.c-transfield {
  position: relative;
  font-style: inherit;
}

.c-transfield__label {
  display: inline-block;
  position: relative;
}

.c-transfield__label:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border: 1px dashed #cecece;
}

.c-quickedit {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.c-quickedit, .c-quickedit h2 {
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

.c-quickedit a {
  font-family: Arial, Helvetica, sans-serif;
}

.c-quickedit__content {
  position: relative;
  width: 90%;
  border-radius: 6px;
  padding: 40px;
  margin: 5% auto;
  border: 1px solid #FFF;
  background-color: #fefefe;
  overflow-y: auto;
  height: auto;
  max-height: calc(-10% - 80px + 100vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 576px) {
  .c-quickedit__content {
    width: 60%;
  }
}

.c-quickedit__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: scroll;
}

.c-quickedit__close {
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  top: 0;
  right: 0;
  padding-right: 10px;
  color: #AAA;
  position: absolute;
  cursor: pointer;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.c-quickedit__close:hover {
  color: #777;
}

.c-quickedit__dialog {
  overflow-y: scroll;
}

.c-quickedit__fieldset {
  display: block;
}

.c-quickedit__fieldset + .c-quickedit__fieldset {
  margin-top: 16px;
}

.c-quickedit__fieldset .redactor-styles ul {
  list-style-type: disc;
}

.c-quickedit__fieldset .redactor-styles ol {
  list-style-type: decimal;
}

.c-quickedit__title {
  font-size: 26px;
  margin-bottom: 30px;
}

.c-quickedit__title a {
  color: #0645AD;
}

.c-quickedit__label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.c-quickedit__input {
  display: block;
  border: 1px solid #cecece;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding: 8px 12px;
  border-radius: 2px;
}

.c-quickedit__input:focus {
  border: 1px solid #888;
}

.c-quickedit__trigger {
  height: 30px;
  padding: 5px 10px;
  position: absolute;
  top: -10px;
  right: -30px;
  cursor: pointer;
}

.c-quickedit__button {
  font-weight: bold;
  margin-top: 20px;
  padding: 11px 27px;
  border-radius: 6px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  background-color: #EEE;
  border: 1px solid #e0e0e0;
}

.c-quickedit__button:hover {
  background-color: #e0e0e0;
}

@charset "UTF-8";

/**
 * This injects Tailwind's base styles, which is a combination of
 * Normalize.css and some additional base styles.
 */

/*! 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 {
  -webkit-box-sizing: content-box;
          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 {
  -webkit-box-sizing: border-box;
          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"] {
  -webkit-box-sizing: border-box;
          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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #B3BCC5; /* 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::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a0aec0;
}

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: 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;
}

/**
  * Here you would add any of your custom component classes; stuff that you'd
  * want loaded *before* the utilities so that the utilities could still
  * override them.
  */

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #1F437E;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/*
   * 3DX
   */

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 48px;
          perspective: 48px;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */

.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 48px;
          perspective: 48px;
}

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
   * 3DY
   */

.hamburger--3dy .hamburger-box {
  -webkit-perspective: 48px;
          perspective: 48px;
}

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */

.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 48px;
          perspective: 48px;
}

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
   * Arrow
   */

.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-4.8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-4.8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-4.8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-4.8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */

.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(4.8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(4.8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(4.8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(4.8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */

.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-4.8px, -6px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-4.8px, -6px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-4.8px, 6px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-4.8px, 6px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */

.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(4.8px, -6px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(4.8px, -6px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(4.8px, 6px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(4.8px, 6px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Boring
   */

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*
   * Collapse
   */

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(45deg);
          transform: translate3d(0, -8px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */

.hamburger--elastic .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(135deg);
          transform: translate3d(0, 8px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
          transform: translate3d(0, -16px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */

.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(-135deg);
          transform: translate3d(0, 8px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(270deg);
          transform: translate3d(0, -16px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
   * Emphatic
   */

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -48px;
  top: -48px;
  -webkit-transform: translate3d(48px, 48px, 0) rotate(45deg);
          transform: translate3d(48px, 48px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -48px;
  top: -48px;
  -webkit-transform: translate3d(-48px, 48px, 0) rotate(-45deg);
          transform: translate3d(-48px, 48px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -48px;
  top: 48px;
  -webkit-transform: translate3d(48px, -48px, 0) rotate(-45deg);
          transform: translate3d(48px, -48px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -48px;
  top: 48px;
  -webkit-transform: translate3d(-48px, -48px, 0) rotate(45deg);
          transform: translate3d(-48px, -48px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Slider
   */

.hamburger--slider .hamburger-inner {
  top: 1px;
}

.hamburger--slider .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 16px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-3.42857px, -6px, 0);
          transform: rotate(-45deg) translate3d(-3.42857px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
          transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */

.hamburger--slider-r .hamburger-inner {
  top: 1px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(3.42857px, -6px, 0);
          transform: rotate(45deg) translate3d(3.42857px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(90deg);
          transform: translate3d(0, -16px, 0) rotate(90deg);
}

/*
   * Spring
   */

.hamburger--spring .hamburger-inner {
  top: 1px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 8px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */

.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */

.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin
   */

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */

.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */

.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */

.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.notifyjs-fribona-base {
  position: relative;
  min-height: 52px;
  background-position: 12px 14px;
  background-repeat: no-repeat;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.notifyjs-fribona-base .text-wrapper {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 16px 16px 16px 40px;
  clear: both;
  font-family: ;
}

.notifyjs-fribona-base .title {
  font-size: 15px;
  font-weight: bold;
}

.notifyjs-fribona-base .text {
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/

/* pswp = photoswipe */

.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */

.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/

/*
	
	1. Buttons

 */

/* <button> css reset */

.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */

  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}

.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */

.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* increase size of share links on touch devices */

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*
	
	4. Caption

 */

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */

.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
          animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
          animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }

  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }

  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

/*
	
	6. Additional styles

 */

/* root element of UI */

.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2-container--lisa .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  height: 40px;
}

.select2-container--lisa .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 40px;
}

.select2-container--lisa .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--lisa .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--lisa .select2-selection--single .select2-selection__arrow {
  height: 38px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--lisa .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--lisa[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--lisa[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--lisa.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--lisa.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--lisa.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--lisa .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--lisa .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--lisa[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--lisa[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--lisa[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--lisa[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--lisa[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--lisa.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--lisa.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--lisa.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--lisa.select2-container--open.select2-container--above .select2-selection--single, .select2-container--lisa.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--lisa.select2-container--open.select2-container--below .select2-selection--single, .select2-container--lisa.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--lisa .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  padding: 6px;
}

.select2-container--lisa .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--lisa .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--lisa .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--lisa .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--lisa .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--lisa .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--lisa .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--lisa .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--lisa .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--lisa .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--lisa .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--lisa .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--lisa .select2-results__option--highlighted[aria-selected] {
  --bg-opacity: 1;
  background-color: #d95157;
  background-color: rgba(217, 81, 87, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.select2-container--lisa .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */

/* Icons */

@font-face {
  font-family: "slick";

  src: url("/fonts/slick.eot");

  src: url("/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/fonts/slick.woff") format("woff"), url("/fonts/slick.ttf") format("truetype"), url("/fonts/slick.svg#slick") format("svg");

  font-weight: normal;

  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
  .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  list-style: none;
  display: block;
  text-align: right;
  padding: 0 13px 0 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #212529;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #212529;
  opacity: 0.75;
}

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*

    Zebra_DatePicker: a lightweight jQuery date picker plugin

    Roelandt theme

    copyright (c) 2011 - 2014 Stefan Gabos
    http://stefangabos.ro/jquery/zebra-datepicker/

*/

.Zebra_DatePicker {
  position: static;
  position: relative;
  width: 100%;
  font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  font-size: .875rem;
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
  border-width: 1px;
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
}

.Zebra_DatePicker .dp_header {
  width: 100% !important;
}

.Zebra_DatePicker .dp_header td {
  padding: 16px 0;
}

.Zebra_DatePicker .dp_daypicker {
  width: 100% !important;
}

.Zebra_DatePicker table {
  width: auto;
  table-layout: auto;
  border-spacing: 1px;
  border-collapse: separate;
}

.Zebra_DatePicker * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000;
  border: none;
  background: transparent;
}

.Zebra_DatePicker *:after, .Zebra_DatePicker *:before {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.Zebra_DatePicker td,
  .Zebra_DatePicker th {
  padding: 8px 0;
  text-align: center;
}

.Zebra_DatePicker td {
  cursor: pointer;
}

.Zebra_DatePicker .dp_daypicker td,
  .Zebra_DatePicker .dp_daypicker th {
  width: 40px;
}

.Zebra_DatePicker .dp_daypicker td {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-left-width: 1px;
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.Zebra_DatePicker .dp_daypicker td:first-child {
  border-left-width: 0;
}

.Zebra_DatePicker .dp_monthpicker td,
  .Zebra_DatePicker .dp_yearpicker td {
  width: 40px;
  --bg-opacity: 1;
  background-color: #B3BCC5;
  background-color: rgba(179, 188, 197, var(--bg-opacity));
  border-width: 1px;
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

.Zebra_DatePicker .dp_header .dp_hover,
  .Zebra_DatePicker .dp_footer .dp_hover {
  border-radius: 0;
}

.Zebra_DatePicker .dp_footer {
  display: none !important;
}

.Zebra_DatePicker.dp_visible {
  visibility: visible;
  opacity: 1;
}

.Zebra_DatePicker.dp_hidden {
  opacity: 0;
}

.Zebra_DatePicker .dp_header {
  width: 100%;
}

.Zebra_DatePicker .dp_header td {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #fff;
}

.Zebra_DatePicker .dp_header .dp_previous,
    .Zebra_DatePicker .dp_header .dp_next {
  width: 40px;
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.Zebra_DatePicker .dp_header .dp_caption {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  font-weight: 600;
}

.Zebra_DatePicker .dp_header .dp_hover {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.Zebra_DatePicker .dp_daypicker th {
  padding: 8px 0;
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
  font-weight: 600;
}

.Zebra_DatePicker td.dp_not_in_month {
  cursor: default;
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.Zebra_DatePicker td.dp_not_in_month_selectable {
  cursor: pointer;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.Zebra_DatePicker td.dp_selected {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.Zebra_DatePicker .dp_monthpicker td,
  .Zebra_DatePicker .dp_yearpicker td {
  width: 33%;
}

.Zebra_DatePicker .dp_footer {
  margin-top: 3px;
}

.Zebra_DatePicker .dp_footer .dp_hover {
  color: #fff;
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.Zebra_DatePicker .dp_today,
  .Zebra_DatePicker .dp_clear {
  padding: 3px;
  color: #fff;
}

.Zebra_DatePicker td.dp_current {
  font-weight: 700;
}

.Zebra_DatePicker td.dp_disabled_current {
  color: #e38585;
}

.Zebra_DatePicker td.dp_disabled {
  cursor: default;
  --text-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.Zebra_DatePicker td.dp_hover {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

button.Zebra_DatePicker_Icon {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  vertical-align: top;
  text-indent: -9000px;
  border: none;
  background: url("../images/calendar.png") no-repeat left top;
  line-height: 0;
}

button.Zebra_DatePicker_Icon_Disabled {
  background-image: url("../images/calendar-disabled.png");
}

button.Zebra_DatePicker_Icon {
  margin: 0 0 0 3px;
}

button.Zebra_DatePicker_Icon_Inside_Right {
  margin: 0 3px 0 0;
}

button.Zebra_DatePicker_Icon_Inside_Left {
  margin: 0 0 0 3px;
}

/* don't set vertical margins! */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* -- CSS variables */

/* -- A subtle focus style for keyboard-input elements */

.text-input:focus {
  outline: 1px solid #5db7a5;
  /* Adjust to suit your tastes */
}

/* -- No outline for non-keyboard-inputs elements */

button:focus,
select:focus {
  outline: none;
}

html.user-is-tabbing *:focus {
  outline: 2px solid #5db7a5 !important;
  /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color !important;
}

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

html {
  line-height: 1.15;
}

button,
input,
optgroup,
select,
textarea {
  line-height: 1.15;
  color: #212529;
}

/*
label {
    font-size: $label-font-size;
    font-weight: 700;
}

//IE HAX
select::-ms-expand {
    display: none;
}

input,
select,
textarea,
button {
    width: 100%;
    padding: $input-padding-vertical $input-padding-horizontal;

    resize: none;
    transition: $transition;

    color: $input-text-color;
    border: none;
    border: 1px solid $input-border-color;
    border-radius: $input-border-radius;
    background-color: $input-bg-color;
    background-repeat: no-repeat;
    background-position: center right -15px;

    font-family: $primary-font-regular;
    font-size: $input-font-size;

    -webkit-appearance: none;
       -moz-appearance: none;
       appearance: none;
    @include placeholder-color($input-placeholder-color);
    &:focus {
        outline: none;
    }
    &.hasError,
    &.form-error {
        position: relative;

        color: $cinnabar;
        border: 1px solid $error-border-color;

        @include placeholder-color(rgba($error-color, .7));
    }
}


input[type='submit'],
button {
    width: auto;
    padding: $input-padding-vertical $input-padding-horizontal;

    resize: none;
    cursor: pointer;
    transition: $transition;

    border: none;
    border-radius: $input-border-radius;

    font-family: $primary-font-semibold;
    font-size: $font-size;

    -webkit-appearance: none;
       -moz-appearance: none;
    &:focus {
        outline: none;
    }
    &[disabled='disabled'] {
        color: $silver-chalice;
        background-color: $alabaster;
    }
}

select {
    padding-right: $field-margin * 2 + 5px;

    cursor: pointer;
}
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  line-height: 1.25;
  font-weight: 600;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

h1, .h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h2, .h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3, .h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

h4, .h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

h5, h6, .h5, .h6 {
  font-size: .9375rem;
  margin-bottom: 1rem;
}

a {
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

p {
  line-height: 1.5;
}

/**
 * 1. Avoid the IE 10-11 `min-height` bug.
 * 2. Set `flex-shrink` to `0` to prevent some browsers from
 *    letting these items shrink to smaller than their content's default
 *    minimum size. See http://bit.ly/1Mn35US for details.
 * 3. Use `%` instead of `vh` since `vh` is buggy in older mobile Safari.
 */

#page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

header,
footer {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  /* 2 */
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  /* 2 */
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main::after {
  content: '\00a0';
  /* &nbsp; */
  display: none;
  height: 0px;
  visibility: hidden;
}

.autocomplete-suggestions {
  margin-top: 3px;
  background: #FFF;
  overflow: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 16px 0 rgba(210, 210, 210, 0.15);
          box-shadow: 0 2px 16px 0 rgba(210, 210, 210, 0.15);
  border-radius: 3px;
}

.autocomplete-suggestion {
  padding: 9px 0;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  font-size: .875rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.autocomplete-suggestion:hover {
  cursor: pointer;
}

.autocomplete-suggestion:last-child {
  position: relative;
}

.autocomplete-suggestion:last-child:before {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  content: "";
  top: 0;
  height: 1px;
  background-color: #DEE4E9;
}

.autocomplete-no-suggestion {
  padding: 9px 0;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  font-size: .875rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.autocomplete-no-suggestion:hover {
  cursor: not-allowed;
}

.autocomplete-selected {
  background: #F0F0F0;
}

.autocomplete-suggestions strong {
  font-weight: 700;
}

.autocomplete-group {
  padding: 2px 5px;
}

.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

.c-back-to-top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  --bg-opacity: 1;
  background-color: #7c171b;
  background-color: rgba(124, 23, 27, var(--bg-opacity));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 0;
  width: 40px;
  height: 40px;
  z-index: 1000;
  right: 40px;
  bottom: -40px;
}

.c-back-to-top.is-visible {
  opacity: 1;
  bottom: 40px;
}

.c-back-to-top:hover {
  --bg-opacity: 1;
  background-color: #530f12;
  background-color: rgba(83, 15, 18, var(--bg-opacity));
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border-width: 1px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  vertical-align: top;
  font-size: 0;
}

.c-button__label {
  display: inline-block;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  font-weight: 600;
  font-size: .9375rem;
}

.c-button__icon {
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: 2.5rem;
}

.c-button:disabled {
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
  cursor: not-allowed;
}

.c-button:disabled .c-button__label {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.c-button--primary:not([disabled]) {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.c-button--primary:not([disabled]):hover {
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.c-button--outline:not([disabled]) {
  border-width: 1px;
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
  background-color: transparent;
}

.c-button--outline:not([disabled]) .c-button__label {
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
}

.c-button--outline:not([disabled]):hover {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.c-button--outline:not([disabled]):hover .c-button__label {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-button--secondary:not([disabled]) {
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.c-button--secondary:not([disabled]):hover {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.c-button--filter:not([disabled]) {
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

.c-button--filter:not([disabled]) .c-button__icon {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  margin-left: 0;
}

.c-button--filter:not([disabled]):hover {
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.c-button--filter:not([disabled]):hover .c-button__icon {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.c-button--filter:not([disabled]):hover .c-button__label {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.c-button--tertiary:not([disabled]) {
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.c-button--tertiary:not([disabled]):hover {
  --bg-opacity: 1;
  background-color: #1a4731;
  background-color: rgba(26, 71, 49, var(--bg-opacity));
}

.c-button--smaller {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.c-button--social:hover {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-button__socialicon {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.c-button + .c-button {
  margin-left: 0.5rem;
}

.c-categorymenu .c-categorymenu__item + .c-categorymenu__item {
  margin-top: 0.75rem;
}

@media (min-width: 1200px) {
  .c-categorymenu .c-categorymenu__item + .c-categorymenu__item {
    margin-top: 0.5rem;
  }
}

.c-categorymenu .c-categorymenu__item.is-active > .c-categorymenu__link > .c-categorymenu__link-label {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  font-weight: 600;
}

.c-categorymenu .c-categorymenu__item.is-active > .c-categorymenu__link > .c-categorymenu__link-label:before {
  content: "•";
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
  padding-right: 0.25rem;
}

.c-categorymenu .c-categorymenu__item.is-selected > .c-categorymenu__link-label {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  font-weight: 600;
}

.c-categorymenu .c-categorymenu__item.is-selected > .c-categorymenu__link-label:before {
  content: "•";
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
  padding-right: 0.25rem;
}

.c-categorymenu .c-categorymenu__link {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-categorymenu .c-categorymenu__link:hover .c-categorymenu__link-label {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  font-weight: 600;
}

.c-categorymenu .c-categorymenu__link-label {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-categorymenu__children {
  padding-left: 30px;
  position: relative;
}

.c-categorymenu__children:before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 12px;
  left: 12px;
  background: #D1D9E1;
}

.c-categorymenu__children .c-categorymenu__link-label:before {
  display: none;
}

.c-categorymenu__child {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  position: relative;
}

.c-categorymenu__child:before {
  left: -17px;
  width: 12px;
  height: 1px;
  top: 11px;
  background: #D1D9E1;
  display: block;
  content: "";
  position: absolute;
}

.c-categorymenu__child:hover .c-categorymenu__link-label {
  font-weight: 600;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  text-decoration: underline;
}

.c-categorymenu__child.is-active .c-categorymenu__link-label {
  font-weight: 600;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  text-decoration: underline;
}

.c-categorymenu--border .c-categorymenu__item {
  margin-top: 0;
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.c-categorymenu--border .c-categorymenu__item + .c-categorymenu__item {
  margin-top: 0;
}

.c-categorymenu--border .c-categorymenu__item:last-child {
  border-bottom-width: 0;
}

.c-categorymenu--border .c-categorymenu__link {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
}

.c-categorymenu--border .c-categorymenu__link--logout .c-categorymenu__link-label {
  font-weight: 600;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.c-check-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 2rem;
}

.c-check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.c-check-list li:before {
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  content: "";
  margin-top: 4px;
  background: transparent url(/images/check.svg) center center no-repeat;
}

.c-container {
  max-width: 100rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .c-container--onlytablet {
    max-width: auto;
    padding: 0;
  }
}

.c-container--smaller {
  max-width: 74rem;
}

.c-description p {
  margin-bottom: 2rem;
  line-height: 1.625;
  font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  font-size: .875rem;
}

.c-description p:last-child {
  margin-bottom: 0;
}

.c-description p + ol,
  .c-description p + ul {
  margin-top: -2rem;
}

.c-description a:not(.c-button) {
  border-bottom-width: 1px;
  border-color: rgba(33, 37, 41, 0.3);
}

.c-description a:not(.c-button):hover {
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.c-description ul,
.c-description ol {
  margin-bottom: 2rem;
  padding-left: 1rem;
  overflow: hidden;
}

.c-description ul:last-child,
  .c-description ol:last-child {
  margin-bottom: 0;
}

.c-description ul {
  list-style-type: none;
  list-style-position: inside;
  padding: 0;
}

.c-description ul > li {
  position: relative;
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: block;
  line-height: 1.625;
}

.c-description ul > li:last-child {
  margin-bottom: 0;
}

.c-description ul > li:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  margin: 0 12px 0 0;
  width: 6px;
  height: 6px;
  left: 0;
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  border-radius: 9999px;
}

.c-description ol {
  list-style-type: decimal;
}

.c-description b,
.c-description strong {
  @aplly .font-semibold;
}

.c-errorblock {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  padding: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-errorblock--error {
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
}

.c-errorblock--success {
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
}

.c-errorblock--warning {
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.c-filters {
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: fixed;
  top: 0;
  height: 100vh;
  left: -100%;
  z-index: 99;
  overflow-y: scroll;
  min-width: 280px;
}

@media (min-width: 768px) {
  .c-filters {
    min-width: auto;
  }
}

.c-filters.is-open {
  left: 0;
}

.c-filters__content {
  padding: 2rem;
}

@media (min-width: 992px) {
  .c-filters__content {
    padding: 0;
  }
}

.c-filters__filter + .c-filters__filter {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top-width: 1px;
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.c-filters__title {
  margin-bottom: 0.5rem;
}

.c-filters__values ul {
  margin-bottom: 0.5rem;
}

.c-filters__values ul > li + li {
  margin-top: 0.75rem;
}

@media (min-width: 1200px) {
  .c-filters__values ul > li + li {
    margin-top: 0.5rem;
  }
}

.c-filters__overlay {
  opacity: 0;
  background: #42505C;
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  z-index: 98;
  width: 100vw;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-filters__overlay.is-open {
  left: 0;
  opacity: 0.7;
}

@media (min-width: 992px) {
  .c-filters__overlay {
    display: none;
  }
}

@media (min-width: 992px) {
  .c-filters {
    display: block;
    background-color: transparent;
    position: static;
    overflow: visible;
    height: auto;
  }
}

.c-form label {
  font-size: .875rem;
  font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  margin-bottom: 0.5rem;
  display: block;
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.c-form input[type='text'],
.c-form input[type='password'],
.c-form input[type='url'],
.c-form input[type='tel'],
.c-form input[type='number'],
.c-form input[type='email'] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
  display: block;
  width: 100%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 0.125rem;
  font-size: .875rem;
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  -webkit-appearance: none;
}

.c-form input[type='text']:focus,
  .c-form input[type='password']:focus,
  .c-form input[type='url']:focus,
  .c-form input[type='tel']:focus,
  .c-form input[type='number']:focus,
  .c-form input[type='email']:focus {
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.c-form input[type='text'].datepicker,
  .c-form input[type='password'].datepicker,
  .c-form input[type='url'].datepicker,
  .c-form input[type='tel'].datepicker,
  .c-form input[type='number'].datepicker,
  .c-form input[type='email'].datepicker {
  display: none;
}

.c-form textarea {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
  display: block;
  width: 100%;
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 0.125rem;
  font-size: .875rem;
  height: 8rem;
  resize: none;
}

.c-form textarea:focus {
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.c-form__input {
  margin-bottom: 1rem;
}

.c-form__input.has-error textarea,
  .c-form__input.has-error input[type='text'],
  .c-form__input.has-error input[type='password'],
  .c-form__input.has-error input[type='url'],
  .c-form__input.has-error input[type='tel'],
  .c-form__input.has-error input[type='number'],
  .c-form__input.has-error input[type='email'] {
  --border-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--border-opacity));
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
  font-weight: 700;
}

.c-form__checkbox, .c-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}

.c-form__checkbox label, .c-form__radio label {
  margin-left: 0.5rem;
  margin-bottom: 0;
}

.c-form__select {
  position: relative;
}

.c-form__select select {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
  border-radius: 0.125rem;
  font-size: .875rem;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 2rem;
}

.c-form__select .c-form__selecticon {
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.c-form__errorlabel {
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
  font-size: .75rem;
}

.c-form--primary label {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-form--checkout input[type='text'],
.c-form--checkout input[type='password'],
.c-form--checkout input[type='url'],
.c-form--checkout input[type='tel'],
.c-form--checkout input[type='number'],
.c-form--checkout input[type='email'],
.c-form--checkout textarea {
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.c-form--search {
  position: relative;
}

.c-form--search input[type='text'],
  .c-form--search input[type='password'],
  .c-form--search input[type='url'],
  .c-form--search input[type='tel'],
  .c-form--search input[type='number'],
  .c-form--search input[type='email'],
  .c-form--search textarea {
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

@media (min-width: 992px) {
  .c-form--search input[type='text'],
  .c-form--search input[type='password'],
  .c-form--search input[type='url'],
  .c-form--search input[type='tel'],
  .c-form--search input[type='number'],
  .c-form--search input[type='email'],
  .c-form--search textarea {
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }
}

.c-form--search .c-form__input {
  z-index: 989;
  position: relative;
}

.c-form--search.has-focus input.js-searchfield {
  -webkit-box-shadow: 0 2px 16px 0 rgba(210, 210, 210, 0.15);
          box-shadow: 0 2px 16px 0 rgba(210, 210, 210, 0.15);
  border-radius: 3px;
  border: 1px solid #fff;
}

.c-form--search.has-focus .c-form__input {
  z-index: 992;
  position: relative;
}

.c-form--search.has-focus .c-searchoverlay {
  opacity: 1;
  z-index: 991;
}

.c-full-bleed {
  width: 100vw;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 992px) {
  .c-full-bleed--sm {
    width: auto;
    margin-left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

@media (min-width: 992px) {
  .c-header__inner {
    position: relative;
    z-index: 10;
    height: 100%;
  }

  .c-header__stickynav {
    position: sticky;
    top: 0;
    z-index: 990;
  }
}

.c-header--home .c-header__inner:after {
  display: none;
}

.c-headercart {
  height: 100%;
  cursor: pointer;
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-headercart:before, .c-headercart:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-headercart:before {
  top: -5px;
}

.c-headercart:after {
  bottom: -5px;
}

.c-headercart__dropdown {
  top: 54px;
  right: 0px;
  width: 80vw;
  z-index: 10;
  position: absolute;
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
          box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  display: none;
}

@media (min-width: 768px) {
  .c-headercart__dropdown {
    width: 30rem;
  }
}

.c-headercart__dropdown-item {
  padding: 1rem;
}

.c-headercart__dropdown-price {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.c-headercart hr {
  border-color: #ccc;
}

.c-headercart:hover {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.c-headercart:hover:before, .c-headercart:hover:after {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.c-headercart__toptrigger:hover .c-headercart__dropdown {
  display: block;
}

.c-headercart__mobile {
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-headercart__mobile:before {
  top: -5px;
  border-radius: 5px 5px 0 0;
}

.c-headercart__mobile:after {
  bottom: -5px;
  border-radius: 0 0 5px 5px;
}

.c-headercart__mobile:hover {
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.c-headercart__mobile:hover:before, .c-headercart__mobile:hover:after {
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.c-headercart__mobile .amount {
  top: 5px;
  right: 5px;
  position: absolute;
  border-radius: 9999px;
  display: block;
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 1.5rem;
  min-width: 1.5rem;
  line-height: 1;
  padding: 0.5rem;
}

.c-hr {
  height: 1px;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  --bg-opacity: 1;
  background-color: #E6EBF5;
  background-color: rgba(230, 235, 245, var(--bg-opacity));
}

.c-hr--fullbleed {
  width: 100vw;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-hr--tighter {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.c-label {
  border-radius: 0.25rem;
  display: inline-block;
  padding: 0.25rem;
  font-size: .75rem;
  border-width: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.c-label + .c-label {
  margin-left: 0.25rem;
}

.c-label--promo {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
  background-color: rgba(156, 173, 92, 0.2);
  border-color: rgba(156, 173, 92, 0.2);
}

.c-label--new {
  --text-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--text-opacity));
  background-color: rgba(102, 187, 8, 0.2);
  border-color: rgba(102, 187, 8, 0.2);
}

.c-label--brand {
  background-color: transparent;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.c-label--notice {
  background-color: rgba(247, 148, 14, 0.2);
  --text-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--text-opacity));
  border-color: rgba(247, 148, 14, 0.2);
}

.c-layout-sidebar {
  --bg-opacity: 1;
  background-color: #F4F6F9;
  background-color: rgba(244, 246, 249, var(--bg-opacity));
  width: 100%;
}

@media (min-width: 992px) {
  .c-layout-sidebar {
    background: -webkit-gradient(linear, left top, right top, from(white), color-stop(50%, white), color-stop(50%, #f4f6f9), to(#f4f6f9));
    background: linear-gradient(90deg, white 0%, white 50%, #f4f6f9 50%, #f4f6f9 100%);
  }
}

.c-link {
}

.c-link:hover .c-link__label {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.c-link:hover .c-link__icon-holder {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.c-link__icon {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin-right: 0.25rem;
}

.c-link__label {
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
  font-weight: 600;
}

.c-link--black .c-link__label {
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
  border-color: rgba(33, 37, 41, 0.3);
}

.c-link--black:hover .c-link__label {
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.c-link--white .c-link__label {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.c-link--white:hover .c-link__label {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.c-link--fiche {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.c-link--fiche .c-link__label {
  font-weight: 600;
  font-size: .75rem;
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.c-link--black {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.c-link--black .c-link__label {
  font-weight: 600;
  font-size: .75rem;
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.c-link--showmore {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.c-link--showmore .c-link__label {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  font-weight: 500;
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.c-link--changedelivery {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.c-link--changedelivery .c-link__label {
  font-size: .75rem;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.c-link--register .c-link__label {
  font-size: .875rem;
}

.c-link--viewall {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-link--viewall .c-link__label {
  text-transform: uppercase;
  font-size: .75rem;
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  border-color: transparent;
}

.c-link--viewall .c-link__icon {
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  margin-left: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-listview__row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.c-listview__row + .c-listview__row {
  border-top-width: 1px;
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.c-login__bigimage {
  background: transparent url(/images/flandria-login.png) center center/cover no-repeat;
}

.c-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.c-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-menu__icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

@media (min-width: 768px) {
  .c-menu--primary .c-menu__item {
    margin-left: 2rem;
  }

  .c-menu--primary .c-menu__item:first-child {
    margin-left: 0;
  }
}

.c-menu--primary .c-menu__item.is-selected {
  position: relative;
}

.c-menu--primary .c-menu__item.is-selected:after {
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
  position: absolute;
  width: calc(100% + 16px);
  bottom: -1px;
  display: block;
  content: "";
  left: -8px;
  height: 3px;
}

.c-menu--primary .c-menu__item.is-selected .c-menu__label {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-menu--primary .c-menu__label {
  font-size: .9375rem;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.c-menu--primary .c-menu__link:hover .c-menu__label {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.c-menu--secondary {
  display: inline-block;
}

@media (min-width: 768px) {
  .c-menu--secondary .c-menu__item {
    display: inline-block;
    margin-left: 1rem;
  }

  .c-menu--secondary .c-menu__item:first-child {
    margin-left: 0;
  }
}

.c-menu--secondary .c-menu__label {
  font-size: .875rem;
}

.c-menu--language {
  display: inline-block;
  margin-left: 2rem;
}

.c-menu--language .c-menu__item {
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left-width: 1px;
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.c-menu--language .c-menu__item:first-child {
  margin-left: 0;
  padding-left: 0;
  border-width: 0;
}

.c-menu--language .c-menu__link.is-active .c-menu__label {
  font-weight: 600;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.c-menu--language .c-menu__link:hover .c-menu__label {
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.c-menu--language .c-menu__label {
  font-size: .8125rem;
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-menu--footer .c-menu__item {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.c-menu--footer .c-menu__label {
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-menu--footer .c-menu__link:hover .c-menu__label {
  --border-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--border-opacity));
  --text-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--text-opacity));
}

.c-menu--primary-mobile .c-menu__items {
  display: block;
}

.c-menu--primary-mobile .c-menu__item {
  display: block;
  border-bottom-width: 1px;
  border-color: rgba(255, 255, 255, 0.3);
}

.c-menu--primary-mobile .c-menu__item:last-child {
  border-color: transparent;
}

.c-menu--primary-mobile .c-menu__label {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.c-menu--language-mobile {
  display: inline-block;
  padding-left: 0.5rem;
}

.c-menu--language-mobile .c-menu__item {
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left-width: 1px;
  border-color: rgba(255, 255, 255, 0.3);
}

.c-menu--language-mobile .c-menu__item:first-child {
  margin-left: 0;
  padding-left: 0;
  border-width: 0;
}

.c-menu--language-mobile .c-menu__link.is-active .c-menu__label {
  font-weight: 600;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-menu--language-mobile .c-menu__link:hover .c-menu__label {
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.c-menu--language-mobile .c-menu__label {
  font-size: .8125rem;
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-message {
  border-radius: 0.125rem;
  padding: 0.5rem;
}

.c-message strong {
  font-weight: 600;
}

.c-message--success {
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-message--error {
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-message--notice {
  --bg-opacity: 1;
  background-color: #F7940E;
  background-color: rgba(247, 148, 14, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-message--primary {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-message + .c-message {
  margin-top: 0.5rem;
}

.c-modal {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: none;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(66, 80, 92, 0.9);
}

.c-modal__content {
  white-space: normal;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: transparent;
  border-radius: 0.25rem;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  text-align: left;
}

.c-modal__close {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 20px;
  display: block;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-modal__close-icon {
  width: 1rem;
  height: 1rem;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  fill: currentColor;
}

.c-modal__close:hover .c-modal__close-icon, .c-modal__close:active .c-modal__close-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-modal__header {
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  padding: 2rem;
}

.c-modal__title {
  padding-bottom: 0;
  font-size: 1.5rem;
  font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  margin-bottom: 0.5rem;
}

.c-modal__body {
  overflow-y: scroll;
  max-height: 70vh;
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.c-modal__text {
  padding: 2rem;
}

.c-modal__list-item {
  border-bottom-width: 1px;
  border-width: 1px;
}

.c-modal__list-item:last-child {
  border-bottom: none;
}

.c-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-modal.is-small .c-modal__content {
  max-width: 500px;
  max-height: 250px;
}

.c-modal.is-animatetop .c-modal__content {
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
}

/* Add Animation */

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.c-numberinput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
  border-radius: 0.25rem;
  height: 2.5rem;
  overflow: hidden;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}

.c-numberinput__stocklabel {
  min-width: 86px;
}

.c-numberinput__control {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.c-numberinput__control span {
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.c-numberinput__control:hover {
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.c-numberinput__control--min {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.c-numberinput__control--plus {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.c-numberinput__field {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
  width: 100%;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
}

.c-numberinput input::-webkit-outer-spin-button,
  .c-numberinput input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.c-numberinput input[type=number] {
  -moz-appearance: textfield;
}

#pjax {
  position: relative;
}

#pjax.is-loading:after {
  z-index: 998;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(244, 246, 249, 0.75);
}

.c-loader {
  font-size: 10px;
  text-indent: -9999em;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #85a2b6;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #85a2b6), color-stop(42%, rgba(66, 80, 92, 0)));
  background: linear-gradient(to right, #85a2b6 10%, rgba(66, 80, 92, 0) 42%);
  position: relative;
  -webkit-animation: load 0.4s infinite ease-in-out;
          animation: load 0.4s infinite ease-in-out;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 999;
}

.c-loader:before {
  width: 50%;
  height: 50%;
  background: #85a2b6;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.c-loader:after {
  position: absolute;
  background: rgba(244, 246, 249, 0.75);
  width: 66%;
  height: 66%;
  border-radius: 50%;
  content: '';
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ldio-z7xlzejahy {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ldio-z7xlzejahy {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ldio-z7xlzejahy div {
  position: absolute;
  width: 29px;
  height: 29px;
  border: 5px solid #85a2b6;
  border-top-color: transparent;
  border-radius: 50%;
}

.ldio-z7xlzejahy div {
  -webkit-animation: ldio-z7xlzejahy 0.641025641025641s linear infinite;
          animation: ldio-z7xlzejahy 0.641025641025641s linear infinite;
  top: 50px;
  left: 50px;
}

.loadingio-spinner-rolling-l75dj7ish69 {
  width: 61px;
  height: 61px;
  display: inline-block;
  overflow: hidden;
  background: none;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  top: -68px;
}

.ldio-z7xlzejahy {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: translateZ(0) scale(0.61);
          transform: translateZ(0) scale(0.61);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  /* see note above */
}

.ldio-z7xlzejahy div {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.c-placeholder {
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
  border-width: 1px;
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
  position: relative;
  padding-top: 72.97%;
}

.c-placeholder__imageholder {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
}

.c-placeholder__image {
  display: block;
  opacity: .2;
}

.c-ratio {
  display: block;
  position: relative;
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
  background-size: cover;
  background-position: center center;
}

.c-ratio--actie {
  padding-bottom: 53.96%;
}

.c-ratio--promo {
  padding-bottom: 53.96%;
}

@media (min-width: 992px) {
  .c-ratio--promo {
    padding-bottom: 116%;
  }
}

@media (min-width: 1200px) {
  .c-ratio--promo {
    padding-bottom: 113.87%;
  }
}

@media (min-width: 1472px) {
  .c-ratio--promo {
    padding-bottom: 112.87%;
  }
}

.c-removefilter {
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: .75rem;
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.c-removefilter + .c-removefilter {
  margin-left: 0.25rem;
}

.c-removefilter__icon {
  margin-left: 0.25rem;
}

.c-removefilter:hover {
  --bg-opacity: 1;
  background-color: #212529;
  background-color: rgba(33, 37, 41, var(--bg-opacity));
}

.c-responsive-table > thead > tr {
  display: none;
}

.c-responsive-table td {
  padding: 0.75rem !important;
  display: block;
}

.c-responsive-table td[data-th]:before {
  content: attr(data-th) ": ";
  font-weight: 700;
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
}

.c-responsive-table td:first-child {
  padding-top: 0.5rem;
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.c-responsive-table td:last-child {
  padding-bottom: 0.5rem;
}

.c-responsive-table tr {
  margin-top: 0.5rem;
  display: block;
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

@media (min-width: 768px) {
  .c-responsive-table > thead > tr {
    display: table-row;
  }

  .c-responsive-table td[data-th]:before {
    display: none;
  }

  .c-responsive-table td {
    display: table-cell;
  }

  .c-responsive-table tr {
    display: table-row;
    border: none;
  }

  .c-responsive-table td:first-child {
    padding-top: 1rem;
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .c-responsive-table td:last-child {
    padding-bottom: 1rem;
  }
}

@media (min-width: 420px) {
  .c-responsive-table .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .c-responsive-table .hide-mobile {
    display: table-cell;
  }
}

.c-searchoverlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.c-side-panel {
  width: 248px;
  -webkit-transition: visibility 0s .5s, -webkit-transform .5s 0s;
  transition: visibility 0s .5s, -webkit-transform .5s 0s;
  transition: transform .5s 0s, visibility 0s .5s;
  transition: transform .5s 0s, visibility 0s .5s, -webkit-transform .5s 0s;
  -webkit-transform: translateX(248px);
          transform: translateX(248px);
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.c-side-panel.is-opened {
  visibility: visible;
  -webkit-transition: visibility 0s 0s, -webkit-transform .5s 0s;
  transition: visibility 0s 0s, -webkit-transform .5s 0s;
  transition: transform .5s 0s, visibility 0s 0s;
  transition: transform .5s 0s, visibility 0s 0s, -webkit-transform .5s 0s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-page-wrapper {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.c-page-wrapper.is-opened {
  cursor: pointer;
  -webkit-transform: translateX(-248px);
          transform: translateX(-248px);
}

.c-spectable__row {
  border-bottom-width: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-spectable__row:last-child {
  border-bottom-width: 0;
}

.c-spectable__title, .c-spectable__spec {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .c-spectable__title, .c-spectable__spec {
    width: 50%;
  }
}

.c-spectable__title {
  font-weight: 600;
}

.c-store-checkbox {
  display: block;
  padding-left: 28px;
}

.c-store-checkbox input {
  display: none;
}

.c-store-checkbox input:checked + .c-store-checkbox__label:before {
  content: "";
  border-width: 1px;
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/images/white-check.png");
  background-size: 60%;
}

.c-store-checkbox .c-store-checkbox__label {
  position: relative;
  font-size: .875rem;
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-store-checkbox .c-store-checkbox__label:before {
  content: "";
  margin-left: -28px;
  border-width: 1px;
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
  border-radius: 0.125rem;
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  background-image: url("/images/white-check.png");
  background-size: 60%;
}

.c-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
          box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
}

.c-table th {
  padding: 0.5rem;
  font-weight: 500;
  text-align: left;
  font-size: .875rem;
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
  white-space: nowrap;
}

@media (min-width: 992px) {
  .c-table th {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .c-table th {
    padding-left: 1rem;
  }
}

.c-table th:first-child {
  border-radius: 4px 0 0 0;
}

.c-table th:last-child {
  border-radius: 0 4px 0 0;
}

.c-table th:last-child {
  text-align: right;
}

.c-table > tbody > tr > td {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  vertical-align: top;
  --bg-opacity: 1;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.c-table > tbody > tr > td:first-child {
  font-weight: 500;
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.c-table > tbody > tr > td.smaller-pr {
  padding-left: 0.5rem;
  padding-right: 0.25rem;
}

.c-table > tbody > tr > td.no-border {
  border-bottom-width: 0;
}

@media (min-width: 992px) {
  .c-table > tbody > tr > td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .c-table > tbody > tr > td.no-border {
    border-bottom-width: 1px;
  }
}

@media (min-width: 768px) {
  .c-table > tbody > tr > td {
    padding: 0.5rem;
    vertical-align: top;
  }

  .c-table > tbody > tr > td:last-child {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .c-table > tbody > tr > td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .c-table > tbody > tr > td {
    padding: 1rem;
  }
}

/**
  * This injects all of Tailwind's utility classes, generated based on your
  * config file.
  */

.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-36 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(9rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(9rem * var(--space-y-reverse));
}

.space-x-36 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(9rem * var(--space-x-reverse));
  margin-left: calc(9rem * 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-44 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(11rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(11rem * var(--space-y-reverse));
}

.space-x-44 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(11rem * var(--space-x-reverse));
  margin-left: calc(11rem * 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-36 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-9rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-9rem * var(--space-y-reverse));
}

.-space-x-36 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-9rem * var(--space-x-reverse));
  margin-left: calc(-9rem * 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-44 > :not(template) ~ :not(template){
  --space-y-reverse: 0;
  margin-top: calc(-11rem * calc(1 - var(--space-y-reverse)));
  margin-bottom: calc(-11rem * var(--space-y-reverse));
}

.-space-x-44 > :not(template) ~ :not(template){
  --space-x-reverse: 0;
  margin-right: calc(-11rem * var(--space-x-reverse));
  margin-left: calc(-11rem * 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;
}

.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;
}

.divide-border > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--divide-opacity));
}

.divide-form > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--divide-opacity));
}

.divide-form-active > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--divide-opacity));
}

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

.divide-black > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #212529;
  border-color: rgba(33, 37, 41, var(--divide-opacity));
}

.divide-grey-darkest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--divide-opacity));
}

.divide-grey-darker > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--divide-opacity));
}

.divide-grey-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--divide-opacity));
}

.divide-grey > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--divide-opacity));
}

.divide-grey-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--divide-opacity));
}

.divide-grey-lighter > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--divide-opacity));
}

.divide-grey-lightest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #F4F6F9;
  border-color: rgba(244, 246, 249, 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-red > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--divide-opacity));
}

.divide-green > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #66BB08;
  border-color: rgba(102, 187, 8, var(--divide-opacity));
}

.divide-blue > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #1FA8E2;
  border-color: rgba(31, 168, 226, var(--divide-opacity));
}

.divide-orange > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #F7940E;
  border-color: rgba(247, 148, 14, var(--divide-opacity));
}

.divide-primary-darkest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #530f12;
  border-color: rgba(83, 15, 18, var(--divide-opacity));
}

.divide-primary-darker > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--divide-opacity));
}

.divide-primary-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a61e24;
  border-color: rgba(166, 30, 36, var(--divide-opacity));
}

.divide-primary > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--divide-opacity));
}

.divide-primary-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d95157;
  border-color: rgba(217, 81, 87, var(--divide-opacity));
}

.divide-primary-lighter > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e27d81;
  border-color: rgba(226, 125, 129, var(--divide-opacity));
}

.divide-primary-lightest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #eca8ab;
  border-color: rgba(236, 168, 171, var(--divide-opacity));
}

.divide-secondary-darkest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #3e4525;
  border-color: rgba(62, 69, 37, var(--divide-opacity));
}

.divide-secondary-darker > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #5e6837;
  border-color: rgba(94, 104, 55, var(--divide-opacity));
}

.divide-secondary-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #7d8a4a;
  border-color: rgba(125, 138, 74, var(--divide-opacity));
}

.divide-secondary > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--divide-opacity));
}

.divide-secondary-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #b0bd7d;
  border-color: rgba(176, 189, 125, var(--divide-opacity));
}

.divide-secondary-lighter > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #c4ce9d;
  border-color: rgba(196, 206, 157, var(--divide-opacity));
}

.divide-secondary-lightest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #d7debe;
  border-color: rgba(215, 222, 190, var(--divide-opacity));
}

.divide-tertiary-darkest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #0f2f21;
  border-color: rgba(15, 47, 33, var(--divide-opacity));
}

.divide-tertiary-darker > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #1a4731;
  border-color: rgba(26, 71, 49, var(--divide-opacity));
}

.divide-tertiary-dark > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #1f9d55;
  border-color: rgba(31, 157, 85, var(--divide-opacity));
}

.divide-tertiary > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #FFC500;
  border-color: rgba(255, 197, 0, var(--divide-opacity));
}

.divide-tertiary-light > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #51d88a;
  border-color: rgba(81, 216, 138, var(--divide-opacity));
}

.divide-tertiary-lighter > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #a2f5bf;
  border-color: rgba(162, 245, 191, var(--divide-opacity));
}

.divide-tertiary-lightest > :not(template) ~ :not(template){
  --divide-opacity: 1;
  border-color: #e3fcec;
  border-color: rgba(227, 252, 236, 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;
}

.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: 0.5;
}

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

.divide-opacity-100 > :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;
}

.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;
}

.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.bg-fixed{
  background-attachment: fixed;
}

.bg-local{
  background-attachment: local;
}

.bg-scroll{
  background-attachment: scroll;
}

.bg-clip-border{
  background-clip: border-box;
}

.bg-clip-padding{
  background-clip: padding-box;
}

.bg-clip-content{
  background-clip: content-box;
}

.bg-clip-text{
  background-clip: text;
}

.bg-border{
  --bg-opacity: 1;
  background-color: #E6EBF5;
  background-color: rgba(230, 235, 245, var(--bg-opacity));
}

.bg-form{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.bg-form-active{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

.bg-transparent{
  background-color: transparent;
}

.bg-black{
  --bg-opacity: 1;
  background-color: #212529;
  background-color: rgba(33, 37, 41, var(--bg-opacity));
}

.bg-grey-darkest{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.bg-grey-darker{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.bg-grey-dark{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

.bg-grey{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.bg-grey-light{
  --bg-opacity: 1;
  background-color: #B3BCC5;
  background-color: rgba(179, 188, 197, var(--bg-opacity));
}

.bg-grey-lighter{
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.bg-grey-lightest{
  --bg-opacity: 1;
  background-color: #F4F6F9;
  background-color: rgba(244, 246, 249, var(--bg-opacity));
}

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

.bg-red{
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
}

.bg-green{
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
}

.bg-blue{
  --bg-opacity: 1;
  background-color: #1FA8E2;
  background-color: rgba(31, 168, 226, var(--bg-opacity));
}

.bg-orange{
  --bg-opacity: 1;
  background-color: #F7940E;
  background-color: rgba(247, 148, 14, var(--bg-opacity));
}

.bg-primary-darkest{
  --bg-opacity: 1;
  background-color: #530f12;
  background-color: rgba(83, 15, 18, var(--bg-opacity));
}

.bg-primary-darker{
  --bg-opacity: 1;
  background-color: #7c171b;
  background-color: rgba(124, 23, 27, var(--bg-opacity));
}

.bg-primary-dark{
  --bg-opacity: 1;
  background-color: #a61e24;
  background-color: rgba(166, 30, 36, var(--bg-opacity));
}

.bg-primary{
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.bg-primary-light{
  --bg-opacity: 1;
  background-color: #d95157;
  background-color: rgba(217, 81, 87, var(--bg-opacity));
}

.bg-primary-lighter{
  --bg-opacity: 1;
  background-color: #e27d81;
  background-color: rgba(226, 125, 129, var(--bg-opacity));
}

.bg-primary-lightest{
  --bg-opacity: 1;
  background-color: #eca8ab;
  background-color: rgba(236, 168, 171, var(--bg-opacity));
}

.bg-secondary-darkest{
  --bg-opacity: 1;
  background-color: #3e4525;
  background-color: rgba(62, 69, 37, var(--bg-opacity));
}

.bg-secondary-darker{
  --bg-opacity: 1;
  background-color: #5e6837;
  background-color: rgba(94, 104, 55, var(--bg-opacity));
}

.bg-secondary-dark{
  --bg-opacity: 1;
  background-color: #7d8a4a;
  background-color: rgba(125, 138, 74, var(--bg-opacity));
}

.bg-secondary{
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.bg-secondary-light{
  --bg-opacity: 1;
  background-color: #b0bd7d;
  background-color: rgba(176, 189, 125, var(--bg-opacity));
}

.bg-secondary-lighter{
  --bg-opacity: 1;
  background-color: #c4ce9d;
  background-color: rgba(196, 206, 157, var(--bg-opacity));
}

.bg-secondary-lightest{
  --bg-opacity: 1;
  background-color: #d7debe;
  background-color: rgba(215, 222, 190, var(--bg-opacity));
}

.bg-tertiary-darkest{
  --bg-opacity: 1;
  background-color: #0f2f21;
  background-color: rgba(15, 47, 33, var(--bg-opacity));
}

.bg-tertiary-darker{
  --bg-opacity: 1;
  background-color: #1a4731;
  background-color: rgba(26, 71, 49, var(--bg-opacity));
}

.bg-tertiary-dark{
  --bg-opacity: 1;
  background-color: #1f9d55;
  background-color: rgba(31, 157, 85, var(--bg-opacity));
}

.bg-tertiary{
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.bg-tertiary-light{
  --bg-opacity: 1;
  background-color: #51d88a;
  background-color: rgba(81, 216, 138, var(--bg-opacity));
}

.bg-tertiary-lighter{
  --bg-opacity: 1;
  background-color: #a2f5bf;
  background-color: rgba(162, 245, 191, var(--bg-opacity));
}

.bg-tertiary-lightest{
  --bg-opacity: 1;
  background-color: #e3fcec;
  background-color: rgba(227, 252, 236, var(--bg-opacity));
}

.hover\:bg-border:hover{
  --bg-opacity: 1;
  background-color: #E6EBF5;
  background-color: rgba(230, 235, 245, var(--bg-opacity));
}

.hover\:bg-form:hover{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.hover\:bg-form-active:hover{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

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

.hover\:bg-black:hover{
  --bg-opacity: 1;
  background-color: #212529;
  background-color: rgba(33, 37, 41, var(--bg-opacity));
}

.hover\:bg-grey-darkest:hover{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.hover\:bg-grey-darker:hover{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.hover\:bg-grey-dark:hover{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

.hover\:bg-grey:hover{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.hover\:bg-grey-light:hover{
  --bg-opacity: 1;
  background-color: #B3BCC5;
  background-color: rgba(179, 188, 197, var(--bg-opacity));
}

.hover\:bg-grey-lighter:hover{
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.hover\:bg-grey-lightest:hover{
  --bg-opacity: 1;
  background-color: #F4F6F9;
  background-color: rgba(244, 246, 249, var(--bg-opacity));
}

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

.hover\:bg-red:hover{
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
}

.hover\:bg-green:hover{
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
}

.hover\:bg-blue:hover{
  --bg-opacity: 1;
  background-color: #1FA8E2;
  background-color: rgba(31, 168, 226, var(--bg-opacity));
}

.hover\:bg-orange:hover{
  --bg-opacity: 1;
  background-color: #F7940E;
  background-color: rgba(247, 148, 14, var(--bg-opacity));
}

.hover\:bg-primary-darkest:hover{
  --bg-opacity: 1;
  background-color: #530f12;
  background-color: rgba(83, 15, 18, var(--bg-opacity));
}

.hover\:bg-primary-darker:hover{
  --bg-opacity: 1;
  background-color: #7c171b;
  background-color: rgba(124, 23, 27, var(--bg-opacity));
}

.hover\:bg-primary-dark:hover{
  --bg-opacity: 1;
  background-color: #a61e24;
  background-color: rgba(166, 30, 36, var(--bg-opacity));
}

.hover\:bg-primary:hover{
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.hover\:bg-primary-light:hover{
  --bg-opacity: 1;
  background-color: #d95157;
  background-color: rgba(217, 81, 87, var(--bg-opacity));
}

.hover\:bg-primary-lighter:hover{
  --bg-opacity: 1;
  background-color: #e27d81;
  background-color: rgba(226, 125, 129, var(--bg-opacity));
}

.hover\:bg-primary-lightest:hover{
  --bg-opacity: 1;
  background-color: #eca8ab;
  background-color: rgba(236, 168, 171, var(--bg-opacity));
}

.hover\:bg-secondary-darkest:hover{
  --bg-opacity: 1;
  background-color: #3e4525;
  background-color: rgba(62, 69, 37, var(--bg-opacity));
}

.hover\:bg-secondary-darker:hover{
  --bg-opacity: 1;
  background-color: #5e6837;
  background-color: rgba(94, 104, 55, var(--bg-opacity));
}

.hover\:bg-secondary-dark:hover{
  --bg-opacity: 1;
  background-color: #7d8a4a;
  background-color: rgba(125, 138, 74, var(--bg-opacity));
}

.hover\:bg-secondary:hover{
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.hover\:bg-secondary-light:hover{
  --bg-opacity: 1;
  background-color: #b0bd7d;
  background-color: rgba(176, 189, 125, var(--bg-opacity));
}

.hover\:bg-secondary-lighter:hover{
  --bg-opacity: 1;
  background-color: #c4ce9d;
  background-color: rgba(196, 206, 157, var(--bg-opacity));
}

.hover\:bg-secondary-lightest:hover{
  --bg-opacity: 1;
  background-color: #d7debe;
  background-color: rgba(215, 222, 190, var(--bg-opacity));
}

.hover\:bg-tertiary-darkest:hover{
  --bg-opacity: 1;
  background-color: #0f2f21;
  background-color: rgba(15, 47, 33, var(--bg-opacity));
}

.hover\:bg-tertiary-darker:hover{
  --bg-opacity: 1;
  background-color: #1a4731;
  background-color: rgba(26, 71, 49, var(--bg-opacity));
}

.hover\:bg-tertiary-dark:hover{
  --bg-opacity: 1;
  background-color: #1f9d55;
  background-color: rgba(31, 157, 85, var(--bg-opacity));
}

.hover\:bg-tertiary:hover{
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.hover\:bg-tertiary-light:hover{
  --bg-opacity: 1;
  background-color: #51d88a;
  background-color: rgba(81, 216, 138, var(--bg-opacity));
}

.hover\:bg-tertiary-lighter:hover{
  --bg-opacity: 1;
  background-color: #a2f5bf;
  background-color: rgba(162, 245, 191, var(--bg-opacity));
}

.hover\:bg-tertiary-lightest:hover{
  --bg-opacity: 1;
  background-color: #e3fcec;
  background-color: rgba(227, 252, 236, var(--bg-opacity));
}

.focus\:bg-border:focus{
  --bg-opacity: 1;
  background-color: #E6EBF5;
  background-color: rgba(230, 235, 245, var(--bg-opacity));
}

.focus\:bg-form:focus{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.focus\:bg-form-active:focus{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

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

.focus\:bg-black:focus{
  --bg-opacity: 1;
  background-color: #212529;
  background-color: rgba(33, 37, 41, var(--bg-opacity));
}

.focus\:bg-grey-darkest:focus{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.focus\:bg-grey-darker:focus{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.focus\:bg-grey-dark:focus{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

.focus\:bg-grey:focus{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.focus\:bg-grey-light:focus{
  --bg-opacity: 1;
  background-color: #B3BCC5;
  background-color: rgba(179, 188, 197, var(--bg-opacity));
}

.focus\:bg-grey-lighter:focus{
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.focus\:bg-grey-lightest:focus{
  --bg-opacity: 1;
  background-color: #F4F6F9;
  background-color: rgba(244, 246, 249, var(--bg-opacity));
}

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

.focus\:bg-red:focus{
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
}

.focus\:bg-green:focus{
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
}

.focus\:bg-blue:focus{
  --bg-opacity: 1;
  background-color: #1FA8E2;
  background-color: rgba(31, 168, 226, var(--bg-opacity));
}

.focus\:bg-orange:focus{
  --bg-opacity: 1;
  background-color: #F7940E;
  background-color: rgba(247, 148, 14, var(--bg-opacity));
}

.focus\:bg-primary-darkest:focus{
  --bg-opacity: 1;
  background-color: #530f12;
  background-color: rgba(83, 15, 18, var(--bg-opacity));
}

.focus\:bg-primary-darker:focus{
  --bg-opacity: 1;
  background-color: #7c171b;
  background-color: rgba(124, 23, 27, var(--bg-opacity));
}

.focus\:bg-primary-dark:focus{
  --bg-opacity: 1;
  background-color: #a61e24;
  background-color: rgba(166, 30, 36, var(--bg-opacity));
}

.focus\:bg-primary:focus{
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.focus\:bg-primary-light:focus{
  --bg-opacity: 1;
  background-color: #d95157;
  background-color: rgba(217, 81, 87, var(--bg-opacity));
}

.focus\:bg-primary-lighter:focus{
  --bg-opacity: 1;
  background-color: #e27d81;
  background-color: rgba(226, 125, 129, var(--bg-opacity));
}

.focus\:bg-primary-lightest:focus{
  --bg-opacity: 1;
  background-color: #eca8ab;
  background-color: rgba(236, 168, 171, var(--bg-opacity));
}

.focus\:bg-secondary-darkest:focus{
  --bg-opacity: 1;
  background-color: #3e4525;
  background-color: rgba(62, 69, 37, var(--bg-opacity));
}

.focus\:bg-secondary-darker:focus{
  --bg-opacity: 1;
  background-color: #5e6837;
  background-color: rgba(94, 104, 55, var(--bg-opacity));
}

.focus\:bg-secondary-dark:focus{
  --bg-opacity: 1;
  background-color: #7d8a4a;
  background-color: rgba(125, 138, 74, var(--bg-opacity));
}

.focus\:bg-secondary:focus{
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.focus\:bg-secondary-light:focus{
  --bg-opacity: 1;
  background-color: #b0bd7d;
  background-color: rgba(176, 189, 125, var(--bg-opacity));
}

.focus\:bg-secondary-lighter:focus{
  --bg-opacity: 1;
  background-color: #c4ce9d;
  background-color: rgba(196, 206, 157, var(--bg-opacity));
}

.focus\:bg-secondary-lightest:focus{
  --bg-opacity: 1;
  background-color: #d7debe;
  background-color: rgba(215, 222, 190, var(--bg-opacity));
}

.focus\:bg-tertiary-darkest:focus{
  --bg-opacity: 1;
  background-color: #0f2f21;
  background-color: rgba(15, 47, 33, var(--bg-opacity));
}

.focus\:bg-tertiary-darker:focus{
  --bg-opacity: 1;
  background-color: #1a4731;
  background-color: rgba(26, 71, 49, var(--bg-opacity));
}

.focus\:bg-tertiary-dark:focus{
  --bg-opacity: 1;
  background-color: #1f9d55;
  background-color: rgba(31, 157, 85, var(--bg-opacity));
}

.focus\:bg-tertiary:focus{
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.focus\:bg-tertiary-light:focus{
  --bg-opacity: 1;
  background-color: #51d88a;
  background-color: rgba(81, 216, 138, var(--bg-opacity));
}

.focus\:bg-tertiary-lighter:focus{
  --bg-opacity: 1;
  background-color: #a2f5bf;
  background-color: rgba(162, 245, 191, var(--bg-opacity));
}

.focus\:bg-tertiary-lightest:focus{
  --bg-opacity: 1;
  background-color: #e3fcec;
  background-color: rgba(227, 252, 236, var(--bg-opacity));
}

.focus\:bg-border:focus{
  --bg-opacity: 1;
  background-color: #E6EBF5;
  background-color: rgba(230, 235, 245, var(--bg-opacity));
}

.focus\:bg-form:focus{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.focus\:bg-form-active:focus{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

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

.focus\:bg-black:focus{
  --bg-opacity: 1;
  background-color: #212529;
  background-color: rgba(33, 37, 41, var(--bg-opacity));
}

.focus\:bg-grey-darkest:focus{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.focus\:bg-grey-darker:focus{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.focus\:bg-grey-dark:focus{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

.focus\:bg-grey:focus{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.focus\:bg-grey-light:focus{
  --bg-opacity: 1;
  background-color: #B3BCC5;
  background-color: rgba(179, 188, 197, var(--bg-opacity));
}

.focus\:bg-grey-lighter:focus{
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.focus\:bg-grey-lightest:focus{
  --bg-opacity: 1;
  background-color: #F4F6F9;
  background-color: rgba(244, 246, 249, var(--bg-opacity));
}

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

.focus\:bg-red:focus{
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
}

.focus\:bg-green:focus{
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
}

.focus\:bg-blue:focus{
  --bg-opacity: 1;
  background-color: #1FA8E2;
  background-color: rgba(31, 168, 226, var(--bg-opacity));
}

.focus\:bg-orange:focus{
  --bg-opacity: 1;
  background-color: #F7940E;
  background-color: rgba(247, 148, 14, var(--bg-opacity));
}

.focus\:bg-primary-darkest:focus{
  --bg-opacity: 1;
  background-color: #530f12;
  background-color: rgba(83, 15, 18, var(--bg-opacity));
}

.focus\:bg-primary-darker:focus{
  --bg-opacity: 1;
  background-color: #7c171b;
  background-color: rgba(124, 23, 27, var(--bg-opacity));
}

.focus\:bg-primary-dark:focus{
  --bg-opacity: 1;
  background-color: #a61e24;
  background-color: rgba(166, 30, 36, var(--bg-opacity));
}

.focus\:bg-primary:focus{
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.focus\:bg-primary-light:focus{
  --bg-opacity: 1;
  background-color: #d95157;
  background-color: rgba(217, 81, 87, var(--bg-opacity));
}

.focus\:bg-primary-lighter:focus{
  --bg-opacity: 1;
  background-color: #e27d81;
  background-color: rgba(226, 125, 129, var(--bg-opacity));
}

.focus\:bg-primary-lightest:focus{
  --bg-opacity: 1;
  background-color: #eca8ab;
  background-color: rgba(236, 168, 171, var(--bg-opacity));
}

.focus\:bg-secondary-darkest:focus{
  --bg-opacity: 1;
  background-color: #3e4525;
  background-color: rgba(62, 69, 37, var(--bg-opacity));
}

.focus\:bg-secondary-darker:focus{
  --bg-opacity: 1;
  background-color: #5e6837;
  background-color: rgba(94, 104, 55, var(--bg-opacity));
}

.focus\:bg-secondary-dark:focus{
  --bg-opacity: 1;
  background-color: #7d8a4a;
  background-color: rgba(125, 138, 74, var(--bg-opacity));
}

.focus\:bg-secondary:focus{
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.focus\:bg-secondary-light:focus{
  --bg-opacity: 1;
  background-color: #b0bd7d;
  background-color: rgba(176, 189, 125, var(--bg-opacity));
}

.focus\:bg-secondary-lighter:focus{
  --bg-opacity: 1;
  background-color: #c4ce9d;
  background-color: rgba(196, 206, 157, var(--bg-opacity));
}

.focus\:bg-secondary-lightest:focus{
  --bg-opacity: 1;
  background-color: #d7debe;
  background-color: rgba(215, 222, 190, var(--bg-opacity));
}

.focus\:bg-tertiary-darkest:focus{
  --bg-opacity: 1;
  background-color: #0f2f21;
  background-color: rgba(15, 47, 33, var(--bg-opacity));
}

.focus\:bg-tertiary-darker:focus{
  --bg-opacity: 1;
  background-color: #1a4731;
  background-color: rgba(26, 71, 49, var(--bg-opacity));
}

.focus\:bg-tertiary-dark:focus{
  --bg-opacity: 1;
  background-color: #1f9d55;
  background-color: rgba(31, 157, 85, var(--bg-opacity));
}

.focus\:bg-tertiary:focus{
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.focus\:bg-tertiary-light:focus{
  --bg-opacity: 1;
  background-color: #51d88a;
  background-color: rgba(81, 216, 138, var(--bg-opacity));
}

.focus\:bg-tertiary-lighter:focus{
  --bg-opacity: 1;
  background-color: #a2f5bf;
  background-color: rgba(162, 245, 191, var(--bg-opacity));
}

.focus\:bg-tertiary-lightest:focus{
  --bg-opacity: 1;
  background-color: #e3fcec;
  background-color: rgba(227, 252, 236, var(--bg-opacity));
}

.group:hover .group-hover\:bg-border{
  --bg-opacity: 1;
  background-color: #E6EBF5;
  background-color: rgba(230, 235, 245, var(--bg-opacity));
}

.group:hover .group-hover\:bg-form{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.group:hover .group-hover\:bg-form-active{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

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

.group:hover .group-hover\:bg-black{
  --bg-opacity: 1;
  background-color: #212529;
  background-color: rgba(33, 37, 41, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey-darkest{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey-darker{
  --bg-opacity: 1;
  background-color: #9AA5C0;
  background-color: rgba(154, 165, 192, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey-dark{
  --bg-opacity: 1;
  background-color: #42505C;
  background-color: rgba(66, 80, 92, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey{
  --bg-opacity: 1;
  background-color: #79828B;
  background-color: rgba(121, 130, 139, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey-light{
  --bg-opacity: 1;
  background-color: #B3BCC5;
  background-color: rgba(179, 188, 197, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey-lighter{
  --bg-opacity: 1;
  background-color: #DEE4E9;
  background-color: rgba(222, 228, 233, var(--bg-opacity));
}

.group:hover .group-hover\:bg-grey-lightest{
  --bg-opacity: 1;
  background-color: #F4F6F9;
  background-color: rgba(244, 246, 249, var(--bg-opacity));
}

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

.group:hover .group-hover\:bg-red{
  --bg-opacity: 1;
  background-color: #D31A08;
  background-color: rgba(211, 26, 8, var(--bg-opacity));
}

.group:hover .group-hover\:bg-green{
  --bg-opacity: 1;
  background-color: #66BB08;
  background-color: rgba(102, 187, 8, var(--bg-opacity));
}

.group:hover .group-hover\:bg-blue{
  --bg-opacity: 1;
  background-color: #1FA8E2;
  background-color: rgba(31, 168, 226, var(--bg-opacity));
}

.group:hover .group-hover\:bg-orange{
  --bg-opacity: 1;
  background-color: #F7940E;
  background-color: rgba(247, 148, 14, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary-darkest{
  --bg-opacity: 1;
  background-color: #530f12;
  background-color: rgba(83, 15, 18, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary-darker{
  --bg-opacity: 1;
  background-color: #7c171b;
  background-color: rgba(124, 23, 27, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary-dark{
  --bg-opacity: 1;
  background-color: #a61e24;
  background-color: rgba(166, 30, 36, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary{
  --bg-opacity: 1;
  background-color: #cf262d;
  background-color: rgba(207, 38, 45, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary-light{
  --bg-opacity: 1;
  background-color: #d95157;
  background-color: rgba(217, 81, 87, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary-lighter{
  --bg-opacity: 1;
  background-color: #e27d81;
  background-color: rgba(226, 125, 129, var(--bg-opacity));
}

.group:hover .group-hover\:bg-primary-lightest{
  --bg-opacity: 1;
  background-color: #eca8ab;
  background-color: rgba(236, 168, 171, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary-darkest{
  --bg-opacity: 1;
  background-color: #3e4525;
  background-color: rgba(62, 69, 37, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary-darker{
  --bg-opacity: 1;
  background-color: #5e6837;
  background-color: rgba(94, 104, 55, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary-dark{
  --bg-opacity: 1;
  background-color: #7d8a4a;
  background-color: rgba(125, 138, 74, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary{
  --bg-opacity: 1;
  background-color: #9cad5c;
  background-color: rgba(156, 173, 92, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary-light{
  --bg-opacity: 1;
  background-color: #b0bd7d;
  background-color: rgba(176, 189, 125, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary-lighter{
  --bg-opacity: 1;
  background-color: #c4ce9d;
  background-color: rgba(196, 206, 157, var(--bg-opacity));
}

.group:hover .group-hover\:bg-secondary-lightest{
  --bg-opacity: 1;
  background-color: #d7debe;
  background-color: rgba(215, 222, 190, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary-darkest{
  --bg-opacity: 1;
  background-color: #0f2f21;
  background-color: rgba(15, 47, 33, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary-darker{
  --bg-opacity: 1;
  background-color: #1a4731;
  background-color: rgba(26, 71, 49, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary-dark{
  --bg-opacity: 1;
  background-color: #1f9d55;
  background-color: rgba(31, 157, 85, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary{
  --bg-opacity: 1;
  background-color: #FFC500;
  background-color: rgba(255, 197, 0, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary-light{
  --bg-opacity: 1;
  background-color: #51d88a;
  background-color: rgba(81, 216, 138, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary-lighter{
  --bg-opacity: 1;
  background-color: #a2f5bf;
  background-color: rgba(162, 245, 191, var(--bg-opacity));
}

.group:hover .group-hover\:bg-tertiary-lightest{
  --bg-opacity: 1;
  background-color: #e3fcec;
  background-color: rgba(227, 252, 236, var(--bg-opacity));
}

.bg-none{
  background-image: none;
}

.bg-gradient-to-t{
  background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to top, var(--gradient-color-stops));
}

.bg-gradient-to-tr{
  background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to top right, var(--gradient-color-stops));
}

.bg-gradient-to-r{
  background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to right, var(--gradient-color-stops));
}

.bg-gradient-to-br{
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
}

.bg-gradient-to-b{
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to bottom, var(--gradient-color-stops));
}

.bg-gradient-to-bl{
  background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
}

.bg-gradient-to-l{
  background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to left, var(--gradient-color-stops));
}

.bg-gradient-to-tl{
  background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
  background-image: linear-gradient(to top left, var(--gradient-color-stops));
}

.from-border{
  --gradient-from-color: #E6EBF5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
}

.from-form{
  --gradient-from-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.from-form-active{
  --gradient-from-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

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

.from-black{
  --gradient-from-color: #212529;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
}

.from-grey-darkest{
  --gradient-from-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.from-grey-darker{
  --gradient-from-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.from-grey-dark{
  --gradient-from-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

.from-grey{
  --gradient-from-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.from-grey-light{
  --gradient-from-color: #B3BCC5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
}

.from-grey-lighter{
  --gradient-from-color: #DEE4E9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
}

.from-grey-lightest{
  --gradient-from-color: #F4F6F9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
}

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

.from-red{
  --gradient-from-color: #D31A08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
}

.from-green{
  --gradient-from-color: #66BB08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
}

.from-blue{
  --gradient-from-color: #1FA8E2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
}

.from-orange{
  --gradient-from-color: #F7940E;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
}

.from-primary-darkest{
  --gradient-from-color: #530f12;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
}

.from-primary-darker{
  --gradient-from-color: #7c171b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
}

.from-primary-dark{
  --gradient-from-color: #a61e24;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
}

.from-primary{
  --gradient-from-color: #cf262d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
}

.from-primary-light{
  --gradient-from-color: #d95157;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
}

.from-primary-lighter{
  --gradient-from-color: #e27d81;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
}

.from-primary-lightest{
  --gradient-from-color: #eca8ab;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
}

.from-secondary-darkest{
  --gradient-from-color: #3e4525;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
}

.from-secondary-darker{
  --gradient-from-color: #5e6837;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
}

.from-secondary-dark{
  --gradient-from-color: #7d8a4a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
}

.from-secondary{
  --gradient-from-color: #9cad5c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
}

.from-secondary-light{
  --gradient-from-color: #b0bd7d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
}

.from-secondary-lighter{
  --gradient-from-color: #c4ce9d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
}

.from-secondary-lightest{
  --gradient-from-color: #d7debe;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
}

.from-tertiary-darkest{
  --gradient-from-color: #0f2f21;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
}

.from-tertiary-darker{
  --gradient-from-color: #1a4731;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
}

.from-tertiary-dark{
  --gradient-from-color: #1f9d55;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
}

.from-tertiary{
  --gradient-from-color: #FFC500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
}

.from-tertiary-light{
  --gradient-from-color: #51d88a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
}

.from-tertiary-lighter{
  --gradient-from-color: #a2f5bf;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
}

.from-tertiary-lightest{
  --gradient-from-color: #e3fcec;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
}

.via-border{
  --gradient-via-color: #E6EBF5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
}

.via-form{
  --gradient-via-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.via-form-active{
  --gradient-via-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black{
  --gradient-via-color: #212529;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
}

.via-grey-darkest{
  --gradient-via-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.via-grey-darker{
  --gradient-via-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.via-grey-dark{
  --gradient-via-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

.via-grey{
  --gradient-via-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.via-grey-light{
  --gradient-via-color: #B3BCC5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
}

.via-grey-lighter{
  --gradient-via-color: #DEE4E9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
}

.via-grey-lightest{
  --gradient-via-color: #F4F6F9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red{
  --gradient-via-color: #D31A08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
}

.via-green{
  --gradient-via-color: #66BB08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
}

.via-blue{
  --gradient-via-color: #1FA8E2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
}

.via-orange{
  --gradient-via-color: #F7940E;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
}

.via-primary-darkest{
  --gradient-via-color: #530f12;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
}

.via-primary-darker{
  --gradient-via-color: #7c171b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
}

.via-primary-dark{
  --gradient-via-color: #a61e24;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
}

.via-primary{
  --gradient-via-color: #cf262d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
}

.via-primary-light{
  --gradient-via-color: #d95157;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
}

.via-primary-lighter{
  --gradient-via-color: #e27d81;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
}

.via-primary-lightest{
  --gradient-via-color: #eca8ab;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
}

.via-secondary-darkest{
  --gradient-via-color: #3e4525;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
}

.via-secondary-darker{
  --gradient-via-color: #5e6837;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
}

.via-secondary-dark{
  --gradient-via-color: #7d8a4a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
}

.via-secondary{
  --gradient-via-color: #9cad5c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
}

.via-secondary-light{
  --gradient-via-color: #b0bd7d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
}

.via-secondary-lighter{
  --gradient-via-color: #c4ce9d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
}

.via-secondary-lightest{
  --gradient-via-color: #d7debe;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
}

.via-tertiary-darkest{
  --gradient-via-color: #0f2f21;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
}

.via-tertiary-darker{
  --gradient-via-color: #1a4731;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
}

.via-tertiary-dark{
  --gradient-via-color: #1f9d55;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
}

.via-tertiary{
  --gradient-via-color: #FFC500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
}

.via-tertiary-light{
  --gradient-via-color: #51d88a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
}

.via-tertiary-lighter{
  --gradient-via-color: #a2f5bf;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
}

.via-tertiary-lightest{
  --gradient-via-color: #e3fcec;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
}

.to-border{
  --gradient-to-color: #E6EBF5;
}

.to-form{
  --gradient-to-color: #79828B;
}

.to-form-active{
  --gradient-to-color: #42505C;
}

.to-transparent{
  --gradient-to-color: transparent;
}

.to-black{
  --gradient-to-color: #212529;
}

.to-grey-darkest{
  --gradient-to-color: #9AA5C0;
}

.to-grey-darker{
  --gradient-to-color: #9AA5C0;
}

.to-grey-dark{
  --gradient-to-color: #42505C;
}

.to-grey{
  --gradient-to-color: #79828B;
}

.to-grey-light{
  --gradient-to-color: #B3BCC5;
}

.to-grey-lighter{
  --gradient-to-color: #DEE4E9;
}

.to-grey-lightest{
  --gradient-to-color: #F4F6F9;
}

.to-white{
  --gradient-to-color: #ffffff;
}

.to-red{
  --gradient-to-color: #D31A08;
}

.to-green{
  --gradient-to-color: #66BB08;
}

.to-blue{
  --gradient-to-color: #1FA8E2;
}

.to-orange{
  --gradient-to-color: #F7940E;
}

.to-primary-darkest{
  --gradient-to-color: #530f12;
}

.to-primary-darker{
  --gradient-to-color: #7c171b;
}

.to-primary-dark{
  --gradient-to-color: #a61e24;
}

.to-primary{
  --gradient-to-color: #cf262d;
}

.to-primary-light{
  --gradient-to-color: #d95157;
}

.to-primary-lighter{
  --gradient-to-color: #e27d81;
}

.to-primary-lightest{
  --gradient-to-color: #eca8ab;
}

.to-secondary-darkest{
  --gradient-to-color: #3e4525;
}

.to-secondary-darker{
  --gradient-to-color: #5e6837;
}

.to-secondary-dark{
  --gradient-to-color: #7d8a4a;
}

.to-secondary{
  --gradient-to-color: #9cad5c;
}

.to-secondary-light{
  --gradient-to-color: #b0bd7d;
}

.to-secondary-lighter{
  --gradient-to-color: #c4ce9d;
}

.to-secondary-lightest{
  --gradient-to-color: #d7debe;
}

.to-tertiary-darkest{
  --gradient-to-color: #0f2f21;
}

.to-tertiary-darker{
  --gradient-to-color: #1a4731;
}

.to-tertiary-dark{
  --gradient-to-color: #1f9d55;
}

.to-tertiary{
  --gradient-to-color: #FFC500;
}

.to-tertiary-light{
  --gradient-to-color: #51d88a;
}

.to-tertiary-lighter{
  --gradient-to-color: #a2f5bf;
}

.to-tertiary-lightest{
  --gradient-to-color: #e3fcec;
}

.hover\:from-border:hover{
  --gradient-from-color: #E6EBF5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
}

.hover\:from-form:hover{
  --gradient-from-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.hover\:from-form-active:hover{
  --gradient-from-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:hover{
  --gradient-from-color: #212529;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
}

.hover\:from-grey-darkest:hover{
  --gradient-from-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.hover\:from-grey-darker:hover{
  --gradient-from-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.hover\:from-grey-dark:hover{
  --gradient-from-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

.hover\:from-grey:hover{
  --gradient-from-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.hover\:from-grey-light:hover{
  --gradient-from-color: #B3BCC5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
}

.hover\:from-grey-lighter:hover{
  --gradient-from-color: #DEE4E9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
}

.hover\:from-grey-lightest:hover{
  --gradient-from-color: #F4F6F9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:hover{
  --gradient-from-color: #D31A08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
}

.hover\:from-green:hover{
  --gradient-from-color: #66BB08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
}

.hover\:from-blue:hover{
  --gradient-from-color: #1FA8E2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
}

.hover\:from-orange:hover{
  --gradient-from-color: #F7940E;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
}

.hover\:from-primary-darkest:hover{
  --gradient-from-color: #530f12;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
}

.hover\:from-primary-darker:hover{
  --gradient-from-color: #7c171b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
}

.hover\:from-primary-dark:hover{
  --gradient-from-color: #a61e24;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
}

.hover\:from-primary:hover{
  --gradient-from-color: #cf262d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
}

.hover\:from-primary-light:hover{
  --gradient-from-color: #d95157;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
}

.hover\:from-primary-lighter:hover{
  --gradient-from-color: #e27d81;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
}

.hover\:from-primary-lightest:hover{
  --gradient-from-color: #eca8ab;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
}

.hover\:from-secondary-darkest:hover{
  --gradient-from-color: #3e4525;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
}

.hover\:from-secondary-darker:hover{
  --gradient-from-color: #5e6837;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
}

.hover\:from-secondary-dark:hover{
  --gradient-from-color: #7d8a4a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
}

.hover\:from-secondary:hover{
  --gradient-from-color: #9cad5c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
}

.hover\:from-secondary-light:hover{
  --gradient-from-color: #b0bd7d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
}

.hover\:from-secondary-lighter:hover{
  --gradient-from-color: #c4ce9d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
}

.hover\:from-secondary-lightest:hover{
  --gradient-from-color: #d7debe;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
}

.hover\:from-tertiary-darkest:hover{
  --gradient-from-color: #0f2f21;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
}

.hover\:from-tertiary-darker:hover{
  --gradient-from-color: #1a4731;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
}

.hover\:from-tertiary-dark:hover{
  --gradient-from-color: #1f9d55;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
}

.hover\:from-tertiary:hover{
  --gradient-from-color: #FFC500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
}

.hover\:from-tertiary-light:hover{
  --gradient-from-color: #51d88a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
}

.hover\:from-tertiary-lighter:hover{
  --gradient-from-color: #a2f5bf;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
}

.hover\:from-tertiary-lightest:hover{
  --gradient-from-color: #e3fcec;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
}

.hover\:via-border:hover{
  --gradient-via-color: #E6EBF5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
}

.hover\:via-form:hover{
  --gradient-via-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.hover\:via-form-active:hover{
  --gradient-via-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:hover{
  --gradient-via-color: #212529;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
}

.hover\:via-grey-darkest:hover{
  --gradient-via-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.hover\:via-grey-darker:hover{
  --gradient-via-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.hover\:via-grey-dark:hover{
  --gradient-via-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

.hover\:via-grey:hover{
  --gradient-via-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.hover\:via-grey-light:hover{
  --gradient-via-color: #B3BCC5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
}

.hover\:via-grey-lighter:hover{
  --gradient-via-color: #DEE4E9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
}

.hover\:via-grey-lightest:hover{
  --gradient-via-color: #F4F6F9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:hover{
  --gradient-via-color: #D31A08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
}

.hover\:via-green:hover{
  --gradient-via-color: #66BB08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
}

.hover\:via-blue:hover{
  --gradient-via-color: #1FA8E2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
}

.hover\:via-orange:hover{
  --gradient-via-color: #F7940E;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
}

.hover\:via-primary-darkest:hover{
  --gradient-via-color: #530f12;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
}

.hover\:via-primary-darker:hover{
  --gradient-via-color: #7c171b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
}

.hover\:via-primary-dark:hover{
  --gradient-via-color: #a61e24;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
}

.hover\:via-primary:hover{
  --gradient-via-color: #cf262d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
}

.hover\:via-primary-light:hover{
  --gradient-via-color: #d95157;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
}

.hover\:via-primary-lighter:hover{
  --gradient-via-color: #e27d81;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
}

.hover\:via-primary-lightest:hover{
  --gradient-via-color: #eca8ab;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
}

.hover\:via-secondary-darkest:hover{
  --gradient-via-color: #3e4525;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
}

.hover\:via-secondary-darker:hover{
  --gradient-via-color: #5e6837;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
}

.hover\:via-secondary-dark:hover{
  --gradient-via-color: #7d8a4a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
}

.hover\:via-secondary:hover{
  --gradient-via-color: #9cad5c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
}

.hover\:via-secondary-light:hover{
  --gradient-via-color: #b0bd7d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
}

.hover\:via-secondary-lighter:hover{
  --gradient-via-color: #c4ce9d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
}

.hover\:via-secondary-lightest:hover{
  --gradient-via-color: #d7debe;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
}

.hover\:via-tertiary-darkest:hover{
  --gradient-via-color: #0f2f21;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
}

.hover\:via-tertiary-darker:hover{
  --gradient-via-color: #1a4731;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
}

.hover\:via-tertiary-dark:hover{
  --gradient-via-color: #1f9d55;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
}

.hover\:via-tertiary:hover{
  --gradient-via-color: #FFC500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
}

.hover\:via-tertiary-light:hover{
  --gradient-via-color: #51d88a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
}

.hover\:via-tertiary-lighter:hover{
  --gradient-via-color: #a2f5bf;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
}

.hover\:via-tertiary-lightest:hover{
  --gradient-via-color: #e3fcec;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
}

.hover\:to-border:hover{
  --gradient-to-color: #E6EBF5;
}

.hover\:to-form:hover{
  --gradient-to-color: #79828B;
}

.hover\:to-form-active:hover{
  --gradient-to-color: #42505C;
}

.hover\:to-transparent:hover{
  --gradient-to-color: transparent;
}

.hover\:to-black:hover{
  --gradient-to-color: #212529;
}

.hover\:to-grey-darkest:hover{
  --gradient-to-color: #9AA5C0;
}

.hover\:to-grey-darker:hover{
  --gradient-to-color: #9AA5C0;
}

.hover\:to-grey-dark:hover{
  --gradient-to-color: #42505C;
}

.hover\:to-grey:hover{
  --gradient-to-color: #79828B;
}

.hover\:to-grey-light:hover{
  --gradient-to-color: #B3BCC5;
}

.hover\:to-grey-lighter:hover{
  --gradient-to-color: #DEE4E9;
}

.hover\:to-grey-lightest:hover{
  --gradient-to-color: #F4F6F9;
}

.hover\:to-white:hover{
  --gradient-to-color: #ffffff;
}

.hover\:to-red:hover{
  --gradient-to-color: #D31A08;
}

.hover\:to-green:hover{
  --gradient-to-color: #66BB08;
}

.hover\:to-blue:hover{
  --gradient-to-color: #1FA8E2;
}

.hover\:to-orange:hover{
  --gradient-to-color: #F7940E;
}

.hover\:to-primary-darkest:hover{
  --gradient-to-color: #530f12;
}

.hover\:to-primary-darker:hover{
  --gradient-to-color: #7c171b;
}

.hover\:to-primary-dark:hover{
  --gradient-to-color: #a61e24;
}

.hover\:to-primary:hover{
  --gradient-to-color: #cf262d;
}

.hover\:to-primary-light:hover{
  --gradient-to-color: #d95157;
}

.hover\:to-primary-lighter:hover{
  --gradient-to-color: #e27d81;
}

.hover\:to-primary-lightest:hover{
  --gradient-to-color: #eca8ab;
}

.hover\:to-secondary-darkest:hover{
  --gradient-to-color: #3e4525;
}

.hover\:to-secondary-darker:hover{
  --gradient-to-color: #5e6837;
}

.hover\:to-secondary-dark:hover{
  --gradient-to-color: #7d8a4a;
}

.hover\:to-secondary:hover{
  --gradient-to-color: #9cad5c;
}

.hover\:to-secondary-light:hover{
  --gradient-to-color: #b0bd7d;
}

.hover\:to-secondary-lighter:hover{
  --gradient-to-color: #c4ce9d;
}

.hover\:to-secondary-lightest:hover{
  --gradient-to-color: #d7debe;
}

.hover\:to-tertiary-darkest:hover{
  --gradient-to-color: #0f2f21;
}

.hover\:to-tertiary-darker:hover{
  --gradient-to-color: #1a4731;
}

.hover\:to-tertiary-dark:hover{
  --gradient-to-color: #1f9d55;
}

.hover\:to-tertiary:hover{
  --gradient-to-color: #FFC500;
}

.hover\:to-tertiary-light:hover{
  --gradient-to-color: #51d88a;
}

.hover\:to-tertiary-lighter:hover{
  --gradient-to-color: #a2f5bf;
}

.hover\:to-tertiary-lightest:hover{
  --gradient-to-color: #e3fcec;
}

.focus\:from-border:focus{
  --gradient-from-color: #E6EBF5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
}

.focus\:from-form:focus{
  --gradient-from-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.focus\:from-form-active:focus{
  --gradient-from-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:focus{
  --gradient-from-color: #212529;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
}

.focus\:from-grey-darkest:focus{
  --gradient-from-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.focus\:from-grey-darker:focus{
  --gradient-from-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.focus\:from-grey-dark:focus{
  --gradient-from-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

.focus\:from-grey:focus{
  --gradient-from-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.focus\:from-grey-light:focus{
  --gradient-from-color: #B3BCC5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
}

.focus\:from-grey-lighter:focus{
  --gradient-from-color: #DEE4E9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
}

.focus\:from-grey-lightest:focus{
  --gradient-from-color: #F4F6F9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:focus{
  --gradient-from-color: #D31A08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
}

.focus\:from-green:focus{
  --gradient-from-color: #66BB08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
}

.focus\:from-blue:focus{
  --gradient-from-color: #1FA8E2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
}

.focus\:from-orange:focus{
  --gradient-from-color: #F7940E;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
}

.focus\:from-primary-darkest:focus{
  --gradient-from-color: #530f12;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
}

.focus\:from-primary-darker:focus{
  --gradient-from-color: #7c171b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
}

.focus\:from-primary-dark:focus{
  --gradient-from-color: #a61e24;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
}

.focus\:from-primary:focus{
  --gradient-from-color: #cf262d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
}

.focus\:from-primary-light:focus{
  --gradient-from-color: #d95157;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
}

.focus\:from-primary-lighter:focus{
  --gradient-from-color: #e27d81;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
}

.focus\:from-primary-lightest:focus{
  --gradient-from-color: #eca8ab;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
}

.focus\:from-secondary-darkest:focus{
  --gradient-from-color: #3e4525;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
}

.focus\:from-secondary-darker:focus{
  --gradient-from-color: #5e6837;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
}

.focus\:from-secondary-dark:focus{
  --gradient-from-color: #7d8a4a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
}

.focus\:from-secondary:focus{
  --gradient-from-color: #9cad5c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
}

.focus\:from-secondary-light:focus{
  --gradient-from-color: #b0bd7d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
}

.focus\:from-secondary-lighter:focus{
  --gradient-from-color: #c4ce9d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
}

.focus\:from-secondary-lightest:focus{
  --gradient-from-color: #d7debe;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
}

.focus\:from-tertiary-darkest:focus{
  --gradient-from-color: #0f2f21;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
}

.focus\:from-tertiary-darker:focus{
  --gradient-from-color: #1a4731;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
}

.focus\:from-tertiary-dark:focus{
  --gradient-from-color: #1f9d55;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
}

.focus\:from-tertiary:focus{
  --gradient-from-color: #FFC500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
}

.focus\:from-tertiary-light:focus{
  --gradient-from-color: #51d88a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
}

.focus\:from-tertiary-lighter:focus{
  --gradient-from-color: #a2f5bf;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
}

.focus\:from-tertiary-lightest:focus{
  --gradient-from-color: #e3fcec;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
}

.focus\:via-border:focus{
  --gradient-via-color: #E6EBF5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
}

.focus\:via-form:focus{
  --gradient-via-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.focus\:via-form-active:focus{
  --gradient-via-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:focus{
  --gradient-via-color: #212529;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
}

.focus\:via-grey-darkest:focus{
  --gradient-via-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.focus\:via-grey-darker:focus{
  --gradient-via-color: #9AA5C0;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
}

.focus\:via-grey-dark:focus{
  --gradient-via-color: #42505C;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
}

.focus\:via-grey:focus{
  --gradient-via-color: #79828B;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
}

.focus\:via-grey-light:focus{
  --gradient-via-color: #B3BCC5;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
}

.focus\:via-grey-lighter:focus{
  --gradient-via-color: #DEE4E9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
}

.focus\:via-grey-lightest:focus{
  --gradient-via-color: #F4F6F9;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:focus{
  --gradient-via-color: #D31A08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
}

.focus\:via-green:focus{
  --gradient-via-color: #66BB08;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
}

.focus\:via-blue:focus{
  --gradient-via-color: #1FA8E2;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
}

.focus\:via-orange:focus{
  --gradient-via-color: #F7940E;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
}

.focus\:via-primary-darkest:focus{
  --gradient-via-color: #530f12;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
}

.focus\:via-primary-darker:focus{
  --gradient-via-color: #7c171b;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
}

.focus\:via-primary-dark:focus{
  --gradient-via-color: #a61e24;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
}

.focus\:via-primary:focus{
  --gradient-via-color: #cf262d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
}

.focus\:via-primary-light:focus{
  --gradient-via-color: #d95157;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
}

.focus\:via-primary-lighter:focus{
  --gradient-via-color: #e27d81;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
}

.focus\:via-primary-lightest:focus{
  --gradient-via-color: #eca8ab;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
}

.focus\:via-secondary-darkest:focus{
  --gradient-via-color: #3e4525;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
}

.focus\:via-secondary-darker:focus{
  --gradient-via-color: #5e6837;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
}

.focus\:via-secondary-dark:focus{
  --gradient-via-color: #7d8a4a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
}

.focus\:via-secondary:focus{
  --gradient-via-color: #9cad5c;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
}

.focus\:via-secondary-light:focus{
  --gradient-via-color: #b0bd7d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
}

.focus\:via-secondary-lighter:focus{
  --gradient-via-color: #c4ce9d;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
}

.focus\:via-secondary-lightest:focus{
  --gradient-via-color: #d7debe;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
}

.focus\:via-tertiary-darkest:focus{
  --gradient-via-color: #0f2f21;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
}

.focus\:via-tertiary-darker:focus{
  --gradient-via-color: #1a4731;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
}

.focus\:via-tertiary-dark:focus{
  --gradient-via-color: #1f9d55;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
}

.focus\:via-tertiary:focus{
  --gradient-via-color: #FFC500;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
}

.focus\:via-tertiary-light:focus{
  --gradient-via-color: #51d88a;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
}

.focus\:via-tertiary-lighter:focus{
  --gradient-via-color: #a2f5bf;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
}

.focus\:via-tertiary-lightest:focus{
  --gradient-via-color: #e3fcec;
  --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
}

.focus\:to-border:focus{
  --gradient-to-color: #E6EBF5;
}

.focus\:to-form:focus{
  --gradient-to-color: #79828B;
}

.focus\:to-form-active:focus{
  --gradient-to-color: #42505C;
}

.focus\:to-transparent:focus{
  --gradient-to-color: transparent;
}

.focus\:to-black:focus{
  --gradient-to-color: #212529;
}

.focus\:to-grey-darkest:focus{
  --gradient-to-color: #9AA5C0;
}

.focus\:to-grey-darker:focus{
  --gradient-to-color: #9AA5C0;
}

.focus\:to-grey-dark:focus{
  --gradient-to-color: #42505C;
}

.focus\:to-grey:focus{
  --gradient-to-color: #79828B;
}

.focus\:to-grey-light:focus{
  --gradient-to-color: #B3BCC5;
}

.focus\:to-grey-lighter:focus{
  --gradient-to-color: #DEE4E9;
}

.focus\:to-grey-lightest:focus{
  --gradient-to-color: #F4F6F9;
}

.focus\:to-white:focus{
  --gradient-to-color: #ffffff;
}

.focus\:to-red:focus{
  --gradient-to-color: #D31A08;
}

.focus\:to-green:focus{
  --gradient-to-color: #66BB08;
}

.focus\:to-blue:focus{
  --gradient-to-color: #1FA8E2;
}

.focus\:to-orange:focus{
  --gradient-to-color: #F7940E;
}

.focus\:to-primary-darkest:focus{
  --gradient-to-color: #530f12;
}

.focus\:to-primary-darker:focus{
  --gradient-to-color: #7c171b;
}

.focus\:to-primary-dark:focus{
  --gradient-to-color: #a61e24;
}

.focus\:to-primary:focus{
  --gradient-to-color: #cf262d;
}

.focus\:to-primary-light:focus{
  --gradient-to-color: #d95157;
}

.focus\:to-primary-lighter:focus{
  --gradient-to-color: #e27d81;
}

.focus\:to-primary-lightest:focus{
  --gradient-to-color: #eca8ab;
}

.focus\:to-secondary-darkest:focus{
  --gradient-to-color: #3e4525;
}

.focus\:to-secondary-darker:focus{
  --gradient-to-color: #5e6837;
}

.focus\:to-secondary-dark:focus{
  --gradient-to-color: #7d8a4a;
}

.focus\:to-secondary:focus{
  --gradient-to-color: #9cad5c;
}

.focus\:to-secondary-light:focus{
  --gradient-to-color: #b0bd7d;
}

.focus\:to-secondary-lighter:focus{
  --gradient-to-color: #c4ce9d;
}

.focus\:to-secondary-lightest:focus{
  --gradient-to-color: #d7debe;
}

.focus\:to-tertiary-darkest:focus{
  --gradient-to-color: #0f2f21;
}

.focus\:to-tertiary-darker:focus{
  --gradient-to-color: #1a4731;
}

.focus\:to-tertiary-dark:focus{
  --gradient-to-color: #1f9d55;
}

.focus\:to-tertiary:focus{
  --gradient-to-color: #FFC500;
}

.focus\:to-tertiary-light:focus{
  --gradient-to-color: #51d88a;
}

.focus\:to-tertiary-lighter:focus{
  --gradient-to-color: #a2f5bf;
}

.focus\:to-tertiary-lightest:focus{
  --gradient-to-color: #e3fcec;
}

.bg-opacity-0{
  --bg-opacity: 0;
}

.bg-opacity-25{
  --bg-opacity: 0.25;
}

.bg-opacity-50{
  --bg-opacity: 0.5;
}

.bg-opacity-75{
  --bg-opacity: 0.75;
}

.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: 0.5;
}

.hover\:bg-opacity-75:hover{
  --bg-opacity: 0.75;
}

.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: 0.5;
}

.focus\:bg-opacity-75:focus{
  --bg-opacity: 0.75;
}

.focus\:bg-opacity-100:focus{
  --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;
}

.bg-repeat{
  background-repeat: repeat;
}

.bg-no-repeat{
  background-repeat: no-repeat;
}

.bg-repeat-x{
  background-repeat: repeat-x;
}

.bg-repeat-y{
  background-repeat: repeat-y;
}

.bg-repeat-round{
  background-repeat: round;
}

.bg-repeat-space{
  background-repeat: space;
}

.bg-auto{
  background-size: auto;
}

.bg-cover{
  background-size: cover;
}

.bg-contain{
  background-size: contain;
}

.border-collapse{
  border-collapse: collapse;
}

.border-separate{
  border-collapse: separate;
}

.border-border{
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

.border-form{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.border-form-active{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.border-transparent{
  border-color: transparent;
}

.border-black{
  --border-opacity: 1;
  border-color: #212529;
  border-color: rgba(33, 37, 41, var(--border-opacity));
}

.border-grey-darkest{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.border-grey-darker{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.border-grey-dark{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.border-grey{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.border-grey-light{
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
}

.border-grey-lighter{
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.border-grey-lightest{
  --border-opacity: 1;
  border-color: #F4F6F9;
  border-color: rgba(244, 246, 249, var(--border-opacity));
}

.border-white{
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.border-red{
  --border-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--border-opacity));
}

.border-green{
  --border-opacity: 1;
  border-color: #66BB08;
  border-color: rgba(102, 187, 8, var(--border-opacity));
}

.border-blue{
  --border-opacity: 1;
  border-color: #1FA8E2;
  border-color: rgba(31, 168, 226, var(--border-opacity));
}

.border-orange{
  --border-opacity: 1;
  border-color: #F7940E;
  border-color: rgba(247, 148, 14, var(--border-opacity));
}

.border-primary-darkest{
  --border-opacity: 1;
  border-color: #530f12;
  border-color: rgba(83, 15, 18, var(--border-opacity));
}

.border-primary-darker{
  --border-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--border-opacity));
}

.border-primary-dark{
  --border-opacity: 1;
  border-color: #a61e24;
  border-color: rgba(166, 30, 36, var(--border-opacity));
}

.border-primary{
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.border-primary-light{
  --border-opacity: 1;
  border-color: #d95157;
  border-color: rgba(217, 81, 87, var(--border-opacity));
}

.border-primary-lighter{
  --border-opacity: 1;
  border-color: #e27d81;
  border-color: rgba(226, 125, 129, var(--border-opacity));
}

.border-primary-lightest{
  --border-opacity: 1;
  border-color: #eca8ab;
  border-color: rgba(236, 168, 171, var(--border-opacity));
}

.border-secondary-darkest{
  --border-opacity: 1;
  border-color: #3e4525;
  border-color: rgba(62, 69, 37, var(--border-opacity));
}

.border-secondary-darker{
  --border-opacity: 1;
  border-color: #5e6837;
  border-color: rgba(94, 104, 55, var(--border-opacity));
}

.border-secondary-dark{
  --border-opacity: 1;
  border-color: #7d8a4a;
  border-color: rgba(125, 138, 74, var(--border-opacity));
}

.border-secondary{
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.border-secondary-light{
  --border-opacity: 1;
  border-color: #b0bd7d;
  border-color: rgba(176, 189, 125, var(--border-opacity));
}

.border-secondary-lighter{
  --border-opacity: 1;
  border-color: #c4ce9d;
  border-color: rgba(196, 206, 157, var(--border-opacity));
}

.border-secondary-lightest{
  --border-opacity: 1;
  border-color: #d7debe;
  border-color: rgba(215, 222, 190, var(--border-opacity));
}

.border-tertiary-darkest{
  --border-opacity: 1;
  border-color: #0f2f21;
  border-color: rgba(15, 47, 33, var(--border-opacity));
}

.border-tertiary-darker{
  --border-opacity: 1;
  border-color: #1a4731;
  border-color: rgba(26, 71, 49, var(--border-opacity));
}

.border-tertiary-dark{
  --border-opacity: 1;
  border-color: #1f9d55;
  border-color: rgba(31, 157, 85, var(--border-opacity));
}

.border-tertiary{
  --border-opacity: 1;
  border-color: #FFC500;
  border-color: rgba(255, 197, 0, var(--border-opacity));
}

.border-tertiary-light{
  --border-opacity: 1;
  border-color: #51d88a;
  border-color: rgba(81, 216, 138, var(--border-opacity));
}

.border-tertiary-lighter{
  --border-opacity: 1;
  border-color: #a2f5bf;
  border-color: rgba(162, 245, 191, var(--border-opacity));
}

.border-tertiary-lightest{
  --border-opacity: 1;
  border-color: #e3fcec;
  border-color: rgba(227, 252, 236, var(--border-opacity));
}

.hover\:border-border:hover{
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

.hover\:border-form:hover{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.hover\:border-form-active:hover{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.hover\:border-transparent:hover{
  border-color: transparent;
}

.hover\:border-black:hover{
  --border-opacity: 1;
  border-color: #212529;
  border-color: rgba(33, 37, 41, var(--border-opacity));
}

.hover\:border-grey-darkest:hover{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.hover\:border-grey-darker:hover{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.hover\:border-grey-dark:hover{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.hover\:border-grey:hover{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.hover\:border-grey-light:hover{
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
}

.hover\:border-grey-lighter:hover{
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.hover\:border-grey-lightest:hover{
  --border-opacity: 1;
  border-color: #F4F6F9;
  border-color: rgba(244, 246, 249, var(--border-opacity));
}

.hover\:border-white:hover{
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.hover\:border-red:hover{
  --border-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--border-opacity));
}

.hover\:border-green:hover{
  --border-opacity: 1;
  border-color: #66BB08;
  border-color: rgba(102, 187, 8, var(--border-opacity));
}

.hover\:border-blue:hover{
  --border-opacity: 1;
  border-color: #1FA8E2;
  border-color: rgba(31, 168, 226, var(--border-opacity));
}

.hover\:border-orange:hover{
  --border-opacity: 1;
  border-color: #F7940E;
  border-color: rgba(247, 148, 14, var(--border-opacity));
}

.hover\:border-primary-darkest:hover{
  --border-opacity: 1;
  border-color: #530f12;
  border-color: rgba(83, 15, 18, var(--border-opacity));
}

.hover\:border-primary-darker:hover{
  --border-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--border-opacity));
}

.hover\:border-primary-dark:hover{
  --border-opacity: 1;
  border-color: #a61e24;
  border-color: rgba(166, 30, 36, var(--border-opacity));
}

.hover\:border-primary:hover{
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.hover\:border-primary-light:hover{
  --border-opacity: 1;
  border-color: #d95157;
  border-color: rgba(217, 81, 87, var(--border-opacity));
}

.hover\:border-primary-lighter:hover{
  --border-opacity: 1;
  border-color: #e27d81;
  border-color: rgba(226, 125, 129, var(--border-opacity));
}

.hover\:border-primary-lightest:hover{
  --border-opacity: 1;
  border-color: #eca8ab;
  border-color: rgba(236, 168, 171, var(--border-opacity));
}

.hover\:border-secondary-darkest:hover{
  --border-opacity: 1;
  border-color: #3e4525;
  border-color: rgba(62, 69, 37, var(--border-opacity));
}

.hover\:border-secondary-darker:hover{
  --border-opacity: 1;
  border-color: #5e6837;
  border-color: rgba(94, 104, 55, var(--border-opacity));
}

.hover\:border-secondary-dark:hover{
  --border-opacity: 1;
  border-color: #7d8a4a;
  border-color: rgba(125, 138, 74, var(--border-opacity));
}

.hover\:border-secondary:hover{
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.hover\:border-secondary-light:hover{
  --border-opacity: 1;
  border-color: #b0bd7d;
  border-color: rgba(176, 189, 125, var(--border-opacity));
}

.hover\:border-secondary-lighter:hover{
  --border-opacity: 1;
  border-color: #c4ce9d;
  border-color: rgba(196, 206, 157, var(--border-opacity));
}

.hover\:border-secondary-lightest:hover{
  --border-opacity: 1;
  border-color: #d7debe;
  border-color: rgba(215, 222, 190, var(--border-opacity));
}

.hover\:border-tertiary-darkest:hover{
  --border-opacity: 1;
  border-color: #0f2f21;
  border-color: rgba(15, 47, 33, var(--border-opacity));
}

.hover\:border-tertiary-darker:hover{
  --border-opacity: 1;
  border-color: #1a4731;
  border-color: rgba(26, 71, 49, var(--border-opacity));
}

.hover\:border-tertiary-dark:hover{
  --border-opacity: 1;
  border-color: #1f9d55;
  border-color: rgba(31, 157, 85, var(--border-opacity));
}

.hover\:border-tertiary:hover{
  --border-opacity: 1;
  border-color: #FFC500;
  border-color: rgba(255, 197, 0, var(--border-opacity));
}

.hover\:border-tertiary-light:hover{
  --border-opacity: 1;
  border-color: #51d88a;
  border-color: rgba(81, 216, 138, var(--border-opacity));
}

.hover\:border-tertiary-lighter:hover{
  --border-opacity: 1;
  border-color: #a2f5bf;
  border-color: rgba(162, 245, 191, var(--border-opacity));
}

.hover\:border-tertiary-lightest:hover{
  --border-opacity: 1;
  border-color: #e3fcec;
  border-color: rgba(227, 252, 236, var(--border-opacity));
}

.focus\:border-border:focus{
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

.focus\:border-form:focus{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.focus\:border-form-active:focus{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.focus\:border-transparent:focus{
  border-color: transparent;
}

.focus\:border-black:focus{
  --border-opacity: 1;
  border-color: #212529;
  border-color: rgba(33, 37, 41, var(--border-opacity));
}

.focus\:border-grey-darkest:focus{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.focus\:border-grey-darker:focus{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.focus\:border-grey-dark:focus{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.focus\:border-grey:focus{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.focus\:border-grey-light:focus{
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
}

.focus\:border-grey-lighter:focus{
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.focus\:border-grey-lightest:focus{
  --border-opacity: 1;
  border-color: #F4F6F9;
  border-color: rgba(244, 246, 249, var(--border-opacity));
}

.focus\:border-white:focus{
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.focus\:border-red:focus{
  --border-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--border-opacity));
}

.focus\:border-green:focus{
  --border-opacity: 1;
  border-color: #66BB08;
  border-color: rgba(102, 187, 8, var(--border-opacity));
}

.focus\:border-blue:focus{
  --border-opacity: 1;
  border-color: #1FA8E2;
  border-color: rgba(31, 168, 226, var(--border-opacity));
}

.focus\:border-orange:focus{
  --border-opacity: 1;
  border-color: #F7940E;
  border-color: rgba(247, 148, 14, var(--border-opacity));
}

.focus\:border-primary-darkest:focus{
  --border-opacity: 1;
  border-color: #530f12;
  border-color: rgba(83, 15, 18, var(--border-opacity));
}

.focus\:border-primary-darker:focus{
  --border-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--border-opacity));
}

.focus\:border-primary-dark:focus{
  --border-opacity: 1;
  border-color: #a61e24;
  border-color: rgba(166, 30, 36, var(--border-opacity));
}

.focus\:border-primary:focus{
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.focus\:border-primary-light:focus{
  --border-opacity: 1;
  border-color: #d95157;
  border-color: rgba(217, 81, 87, var(--border-opacity));
}

.focus\:border-primary-lighter:focus{
  --border-opacity: 1;
  border-color: #e27d81;
  border-color: rgba(226, 125, 129, var(--border-opacity));
}

.focus\:border-primary-lightest:focus{
  --border-opacity: 1;
  border-color: #eca8ab;
  border-color: rgba(236, 168, 171, var(--border-opacity));
}

.focus\:border-secondary-darkest:focus{
  --border-opacity: 1;
  border-color: #3e4525;
  border-color: rgba(62, 69, 37, var(--border-opacity));
}

.focus\:border-secondary-darker:focus{
  --border-opacity: 1;
  border-color: #5e6837;
  border-color: rgba(94, 104, 55, var(--border-opacity));
}

.focus\:border-secondary-dark:focus{
  --border-opacity: 1;
  border-color: #7d8a4a;
  border-color: rgba(125, 138, 74, var(--border-opacity));
}

.focus\:border-secondary:focus{
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.focus\:border-secondary-light:focus{
  --border-opacity: 1;
  border-color: #b0bd7d;
  border-color: rgba(176, 189, 125, var(--border-opacity));
}

.focus\:border-secondary-lighter:focus{
  --border-opacity: 1;
  border-color: #c4ce9d;
  border-color: rgba(196, 206, 157, var(--border-opacity));
}

.focus\:border-secondary-lightest:focus{
  --border-opacity: 1;
  border-color: #d7debe;
  border-color: rgba(215, 222, 190, var(--border-opacity));
}

.focus\:border-tertiary-darkest:focus{
  --border-opacity: 1;
  border-color: #0f2f21;
  border-color: rgba(15, 47, 33, var(--border-opacity));
}

.focus\:border-tertiary-darker:focus{
  --border-opacity: 1;
  border-color: #1a4731;
  border-color: rgba(26, 71, 49, var(--border-opacity));
}

.focus\:border-tertiary-dark:focus{
  --border-opacity: 1;
  border-color: #1f9d55;
  border-color: rgba(31, 157, 85, var(--border-opacity));
}

.focus\:border-tertiary:focus{
  --border-opacity: 1;
  border-color: #FFC500;
  border-color: rgba(255, 197, 0, var(--border-opacity));
}

.focus\:border-tertiary-light:focus{
  --border-opacity: 1;
  border-color: #51d88a;
  border-color: rgba(81, 216, 138, var(--border-opacity));
}

.focus\:border-tertiary-lighter:focus{
  --border-opacity: 1;
  border-color: #a2f5bf;
  border-color: rgba(162, 245, 191, var(--border-opacity));
}

.focus\:border-tertiary-lightest:focus{
  --border-opacity: 1;
  border-color: #e3fcec;
  border-color: rgba(227, 252, 236, var(--border-opacity));
}

.focus\:border-border:focus{
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

.focus\:border-form:focus{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.focus\:border-form-active:focus{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.focus\:border-transparent:focus{
  border-color: transparent;
}

.focus\:border-black:focus{
  --border-opacity: 1;
  border-color: #212529;
  border-color: rgba(33, 37, 41, var(--border-opacity));
}

.focus\:border-grey-darkest:focus{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.focus\:border-grey-darker:focus{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.focus\:border-grey-dark:focus{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.focus\:border-grey:focus{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.focus\:border-grey-light:focus{
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
}

.focus\:border-grey-lighter:focus{
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.focus\:border-grey-lightest:focus{
  --border-opacity: 1;
  border-color: #F4F6F9;
  border-color: rgba(244, 246, 249, var(--border-opacity));
}

.focus\:border-white:focus{
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.focus\:border-red:focus{
  --border-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--border-opacity));
}

.focus\:border-green:focus{
  --border-opacity: 1;
  border-color: #66BB08;
  border-color: rgba(102, 187, 8, var(--border-opacity));
}

.focus\:border-blue:focus{
  --border-opacity: 1;
  border-color: #1FA8E2;
  border-color: rgba(31, 168, 226, var(--border-opacity));
}

.focus\:border-orange:focus{
  --border-opacity: 1;
  border-color: #F7940E;
  border-color: rgba(247, 148, 14, var(--border-opacity));
}

.focus\:border-primary-darkest:focus{
  --border-opacity: 1;
  border-color: #530f12;
  border-color: rgba(83, 15, 18, var(--border-opacity));
}

.focus\:border-primary-darker:focus{
  --border-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--border-opacity));
}

.focus\:border-primary-dark:focus{
  --border-opacity: 1;
  border-color: #a61e24;
  border-color: rgba(166, 30, 36, var(--border-opacity));
}

.focus\:border-primary:focus{
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.focus\:border-primary-light:focus{
  --border-opacity: 1;
  border-color: #d95157;
  border-color: rgba(217, 81, 87, var(--border-opacity));
}

.focus\:border-primary-lighter:focus{
  --border-opacity: 1;
  border-color: #e27d81;
  border-color: rgba(226, 125, 129, var(--border-opacity));
}

.focus\:border-primary-lightest:focus{
  --border-opacity: 1;
  border-color: #eca8ab;
  border-color: rgba(236, 168, 171, var(--border-opacity));
}

.focus\:border-secondary-darkest:focus{
  --border-opacity: 1;
  border-color: #3e4525;
  border-color: rgba(62, 69, 37, var(--border-opacity));
}

.focus\:border-secondary-darker:focus{
  --border-opacity: 1;
  border-color: #5e6837;
  border-color: rgba(94, 104, 55, var(--border-opacity));
}

.focus\:border-secondary-dark:focus{
  --border-opacity: 1;
  border-color: #7d8a4a;
  border-color: rgba(125, 138, 74, var(--border-opacity));
}

.focus\:border-secondary:focus{
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.focus\:border-secondary-light:focus{
  --border-opacity: 1;
  border-color: #b0bd7d;
  border-color: rgba(176, 189, 125, var(--border-opacity));
}

.focus\:border-secondary-lighter:focus{
  --border-opacity: 1;
  border-color: #c4ce9d;
  border-color: rgba(196, 206, 157, var(--border-opacity));
}

.focus\:border-secondary-lightest:focus{
  --border-opacity: 1;
  border-color: #d7debe;
  border-color: rgba(215, 222, 190, var(--border-opacity));
}

.focus\:border-tertiary-darkest:focus{
  --border-opacity: 1;
  border-color: #0f2f21;
  border-color: rgba(15, 47, 33, var(--border-opacity));
}

.focus\:border-tertiary-darker:focus{
  --border-opacity: 1;
  border-color: #1a4731;
  border-color: rgba(26, 71, 49, var(--border-opacity));
}

.focus\:border-tertiary-dark:focus{
  --border-opacity: 1;
  border-color: #1f9d55;
  border-color: rgba(31, 157, 85, var(--border-opacity));
}

.focus\:border-tertiary:focus{
  --border-opacity: 1;
  border-color: #FFC500;
  border-color: rgba(255, 197, 0, var(--border-opacity));
}

.focus\:border-tertiary-light:focus{
  --border-opacity: 1;
  border-color: #51d88a;
  border-color: rgba(81, 216, 138, var(--border-opacity));
}

.focus\:border-tertiary-lighter:focus{
  --border-opacity: 1;
  border-color: #a2f5bf;
  border-color: rgba(162, 245, 191, var(--border-opacity));
}

.focus\:border-tertiary-lightest:focus{
  --border-opacity: 1;
  border-color: #e3fcec;
  border-color: rgba(227, 252, 236, var(--border-opacity));
}

.group:hover .group-hover\:border-border{
  --border-opacity: 1;
  border-color: #E6EBF5;
  border-color: rgba(230, 235, 245, var(--border-opacity));
}

.group:hover .group-hover\:border-form{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.group:hover .group-hover\:border-form-active{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.group:hover .group-hover\:border-transparent{
  border-color: transparent;
}

.group:hover .group-hover\:border-black{
  --border-opacity: 1;
  border-color: #212529;
  border-color: rgba(33, 37, 41, var(--border-opacity));
}

.group:hover .group-hover\:border-grey-darkest{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.group:hover .group-hover\:border-grey-darker{
  --border-opacity: 1;
  border-color: #9AA5C0;
  border-color: rgba(154, 165, 192, var(--border-opacity));
}

.group:hover .group-hover\:border-grey-dark{
  --border-opacity: 1;
  border-color: #42505C;
  border-color: rgba(66, 80, 92, var(--border-opacity));
}

.group:hover .group-hover\:border-grey{
  --border-opacity: 1;
  border-color: #79828B;
  border-color: rgba(121, 130, 139, var(--border-opacity));
}

.group:hover .group-hover\:border-grey-light{
  --border-opacity: 1;
  border-color: #B3BCC5;
  border-color: rgba(179, 188, 197, var(--border-opacity));
}

.group:hover .group-hover\:border-grey-lighter{
  --border-opacity: 1;
  border-color: #DEE4E9;
  border-color: rgba(222, 228, 233, var(--border-opacity));
}

.group:hover .group-hover\:border-grey-lightest{
  --border-opacity: 1;
  border-color: #F4F6F9;
  border-color: rgba(244, 246, 249, var(--border-opacity));
}

.group:hover .group-hover\:border-white{
  --border-opacity: 1;
  border-color: #ffffff;
  border-color: rgba(255, 255, 255, var(--border-opacity));
}

.group:hover .group-hover\:border-red{
  --border-opacity: 1;
  border-color: #D31A08;
  border-color: rgba(211, 26, 8, var(--border-opacity));
}

.group:hover .group-hover\:border-green{
  --border-opacity: 1;
  border-color: #66BB08;
  border-color: rgba(102, 187, 8, var(--border-opacity));
}

.group:hover .group-hover\:border-blue{
  --border-opacity: 1;
  border-color: #1FA8E2;
  border-color: rgba(31, 168, 226, var(--border-opacity));
}

.group:hover .group-hover\:border-orange{
  --border-opacity: 1;
  border-color: #F7940E;
  border-color: rgba(247, 148, 14, var(--border-opacity));
}

.group:hover .group-hover\:border-primary-darkest{
  --border-opacity: 1;
  border-color: #530f12;
  border-color: rgba(83, 15, 18, var(--border-opacity));
}

.group:hover .group-hover\:border-primary-darker{
  --border-opacity: 1;
  border-color: #7c171b;
  border-color: rgba(124, 23, 27, var(--border-opacity));
}

.group:hover .group-hover\:border-primary-dark{
  --border-opacity: 1;
  border-color: #a61e24;
  border-color: rgba(166, 30, 36, var(--border-opacity));
}

.group:hover .group-hover\:border-primary{
  --border-opacity: 1;
  border-color: #cf262d;
  border-color: rgba(207, 38, 45, var(--border-opacity));
}

.group:hover .group-hover\:border-primary-light{
  --border-opacity: 1;
  border-color: #d95157;
  border-color: rgba(217, 81, 87, var(--border-opacity));
}

.group:hover .group-hover\:border-primary-lighter{
  --border-opacity: 1;
  border-color: #e27d81;
  border-color: rgba(226, 125, 129, var(--border-opacity));
}

.group:hover .group-hover\:border-primary-lightest{
  --border-opacity: 1;
  border-color: #eca8ab;
  border-color: rgba(236, 168, 171, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary-darkest{
  --border-opacity: 1;
  border-color: #3e4525;
  border-color: rgba(62, 69, 37, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary-darker{
  --border-opacity: 1;
  border-color: #5e6837;
  border-color: rgba(94, 104, 55, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary-dark{
  --border-opacity: 1;
  border-color: #7d8a4a;
  border-color: rgba(125, 138, 74, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary{
  --border-opacity: 1;
  border-color: #9cad5c;
  border-color: rgba(156, 173, 92, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary-light{
  --border-opacity: 1;
  border-color: #b0bd7d;
  border-color: rgba(176, 189, 125, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary-lighter{
  --border-opacity: 1;
  border-color: #c4ce9d;
  border-color: rgba(196, 206, 157, var(--border-opacity));
}

.group:hover .group-hover\:border-secondary-lightest{
  --border-opacity: 1;
  border-color: #d7debe;
  border-color: rgba(215, 222, 190, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary-darkest{
  --border-opacity: 1;
  border-color: #0f2f21;
  border-color: rgba(15, 47, 33, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary-darker{
  --border-opacity: 1;
  border-color: #1a4731;
  border-color: rgba(26, 71, 49, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary-dark{
  --border-opacity: 1;
  border-color: #1f9d55;
  border-color: rgba(31, 157, 85, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary{
  --border-opacity: 1;
  border-color: #FFC500;
  border-color: rgba(255, 197, 0, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary-light{
  --border-opacity: 1;
  border-color: #51d88a;
  border-color: rgba(81, 216, 138, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary-lighter{
  --border-opacity: 1;
  border-color: #a2f5bf;
  border-color: rgba(162, 245, 191, var(--border-opacity));
}

.group:hover .group-hover\:border-tertiary-lightest{
  --border-opacity: 1;
  border-color: #e3fcec;
  border-color: rgba(227, 252, 236, var(--border-opacity));
}

.border-opacity-0{
  --border-opacity: 0;
}

.border-opacity-25{
  --border-opacity: 0.25;
}

.border-opacity-50{
  --border-opacity: 0.5;
}

.border-opacity-75{
  --border-opacity: 0.75;
}

.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: 0.5;
}

.hover\:border-opacity-75:hover{
  --border-opacity: 0.75;
}

.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: 0.5;
}

.focus\:border-opacity-75:focus{
  --border-opacity: 0.75;
}

.focus\:border-opacity-100:focus{
  --border-opacity: 1;
}

.rounded-none{
  border-radius: 0;
}

.rounded-xs{
  border-radius: 0.061rem;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-full{
  border-radius: 9999px;
}

.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-xs{
  border-top-left-radius: 0.061rem;
  border-top-right-radius: 0.061rem;
}

.rounded-r-xs{
  border-top-right-radius: 0.061rem;
  border-bottom-right-radius: 0.061rem;
}

.rounded-b-xs{
  border-bottom-right-radius: 0.061rem;
  border-bottom-left-radius: 0.061rem;
}

.rounded-l-xs{
  border-top-left-radius: 0.061rem;
  border-bottom-left-radius: 0.061rem;
}

.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-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-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-xs{
  border-top-left-radius: 0.061rem;
}

.rounded-tr-xs{
  border-top-right-radius: 0.061rem;
}

.rounded-br-xs{
  border-bottom-right-radius: 0.061rem;
}

.rounded-bl-xs{
  border-bottom-left-radius: 0.061rem;
}

.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-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;
}

.border-solid{
  border-style: solid;
}

.border-dashed{
  border-style: dashed;
}

.border-dotted{
  border-style: dotted;
}

.border-double{
  border-style: double;
}

.border-none{
  border-style: none;
}

.border-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;
}

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

.box-content{
  -webkit-box-sizing: content-box;
          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;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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;
}

.flex-row{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse{
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap{
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-wrap-reverse{
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex-no-wrap{
  -ms-flex-wrap: nowrap;
      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;
}

.place-content-center{
  place-content: center;
}

.place-content-start{
  place-content: start;
}

.place-content-end{
  place-content: end;
}

.place-content-between{
  place-content: space-between;
}

.place-content-around{
  place-content: space-around;
}

.place-content-evenly{
  place-content: space-evenly;
}

.place-content-stretch{
  place-content: stretch;
}

.place-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;
}

.items-start{
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end{
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline{
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch{
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.content-center{
  -ms-flex-line-pack: center;
      align-content: center;
}

.content-start{
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.content-end{
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.content-between{
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.content-around{
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.content-evenly{
  -ms-flex-line-pack: space-evenly;
      align-content: space-evenly;
}

.self-auto{
  -ms-flex-item-align: auto;
      align-self: auto;
}

.self-start{
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.self-end{
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.self-center{
  -ms-flex-item-align: center;
      align-self: center;
}

.self-stretch{
  -ms-flex-item-align: stretch;
      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;
}

.justify-start{
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end{
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center{
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between{
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around{
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-evenly{
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          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;
}

.flex-1{
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.flex-auto{
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-initial{
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.flex-none{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.flex-grow-0{
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-grow{
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-shrink-0{
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-shrink{
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.order-1{
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2{
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3{
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4{
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5{
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6{
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7{
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8{
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9{
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10{
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11{
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12{
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.order-first{
  -webkit-box-ordinal-group: -9998;
      -ms-flex-order: -9999;
          order: -9999;
}

.order-last{
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.order-none{
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.float-right{
  float: right;
}

.float-left{
  float: left;
}

.float-none{
  float: none;
}

.clearfix:after{
  content: "";
  display: table;
  clear: both;
}

.clear-left{
  clear: left;
}

.clear-right{
  clear: right;
}

.clear-both{
  clear: both;
}

.clear-none{
  clear: none;
}

.font-primary{
  font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
}

.font-secondary{
  font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
}

.font-mono{
  font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.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;
}

.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-21{
  height: 5.25rem;
}

.h-24{
  height: 6rem;
}

.h-32{
  height: 8rem;
}

.h-36{
  height: 9rem;
}

.h-40{
  height: 10rem;
}

.h-44{
  height: 11rem;
}

.h-48{
  height: 12rem;
}

.h-56{
  height: 14rem;
}

.h-64{
  height: 16rem;
}

.h-544{
  height: 34rem;
}

.h-auto{
  height: auto;
}

.h-px{
  height: 1px;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

.text-0{
  font-size: 0;
}

.text-xxs{
  font-size: .75rem;
}

.text-xs{
  font-size: .8125rem;
}

.text-sm{
  font-size: .875rem;
}

.text-base{
  font-size: .9375rem;
}

.text-lg{
  font-size: 1rem;
}

.text-2lg{
  font-size: 1.125rem;
}

.text-xl{
  font-size: 1.25rem;
}

.text-2xl{
  font-size: 1.5rem;
}

.text-3xl{
  font-size: 2rem;
}

.text-4xl{
  font-size: 2.25rem;
}

.text-5xl{
  font-size: 3rem;
}

.leading-none{
  line-height: 1;
}

.leading-tight{
  line-height: 1.25;
}

.leading-snug{
  line-height: 1.375;
}

.leading-normal{
  line-height: 1.5;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-loose{
  line-height: 2;
}

.list-inside{
  list-style-position: inside;
}

.list-outside{
  list-style-position: outside;
}

.list-none{
  list-style-type: none;
}

.list-disc{
  list-style-type: disc;
}

.list-decimal{
  list-style-type: decimal;
}

.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-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-36{
  margin: 9rem;
}

.m-40{
  margin: 10rem;
}

.m-44{
  margin: 11rem;
}

.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-36{
  margin: -9rem;
}

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

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

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

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

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

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

.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-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-36{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

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

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

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

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

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

.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-36{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

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

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

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

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

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

.-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;
}

.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-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-36{
  margin-top: 9rem;
}

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

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

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

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

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

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

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

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

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

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

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

.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-36{
  margin-top: -9rem;
}

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

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

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

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

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

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

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

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

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

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

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

.-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;
}

.max-h-full{
  max-height: 100%;
}

.max-h-screen{
  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-xs{
  max-width: 420px;
}

.max-w-screen-sm{
  max-width: 576px;
}

.max-w-screen-md{
  max-width: 768px;
}

.max-w-screen-lg{
  max-width: 992px;
}

.max-w-screen-xl{
  max-width: 1200px;
}

.max-w-screen-xxl{
  max-width: 1472px;
}

.max-w-screen-hd{
  max-width: 1920px;
}

.min-h-0{
  min-height: 0;
}

.min-h-full{
  min-height: 100%;
}

.min-h-screen{
  min-height: 100vh;
}

.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-44{
  min-width: 11rem;
}

.min-w-48{
  min-width: 12rem;
}

.min-w-56{
  min-width: 14rem;
}

.min-w-64{
  min-width: 16rem;
}

.min-w-px{
  min-width: 1px;
}

.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fill{
  -o-object-fit: fill;
     object-fit: fill;
}

.object-none{
  -o-object-fit: none;
     object-fit: none;
}

.object-scale-down{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.object-bottom{
  -o-object-position: bottom;
     object-position: bottom;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.object-left{
  -o-object-position: left;
     object-position: left;
}

.object-left-bottom{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.object-left-top{
  -o-object-position: left top;
     object-position: left top;
}

.object-right{
  -o-object-position: right;
     object-position: right;
}

.object-right-bottom{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.object-right-top{
  -o-object-position: right top;
     object-position: right top;
}

.object-top{
  -o-object-position: top;
     object-position: top;
}

.opacity-0{
  opacity: 0;
}

.opacity-25{
  opacity: 0.25;
}

.opacity-50{
  opacity: 0.5;
}

.opacity-75{
  opacity: 0.75;
}

.opacity-100{
  opacity: 1;
}

.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline-white{
  outline: 2px dotted white;
  outline-offset: 2px;
}

.outline-black{
  outline: 2px dotted black;
  outline-offset: 2px;
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-white:focus{
  outline: 2px dotted white;
  outline-offset: 2px;
}

.focus\:outline-black:focus{
  outline: 2px dotted black;
  outline-offset: 2px;
}

.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;
}

.overscroll-auto{
  overscroll-behavior: auto;
}

.overscroll-contain{
  overscroll-behavior: contain;
}

.overscroll-none{
  overscroll-behavior: none;
}

.overscroll-y-auto{
  overscroll-behavior-y: auto;
}

.overscroll-y-contain{
  overscroll-behavior-y: contain;
}

.overscroll-y-none{
  overscroll-behavior-y: none;
}

.overscroll-x-auto{
  overscroll-behavior-x: auto;
}

.overscroll-x-contain{
  overscroll-behavior-x: contain;
}

.overscroll-x-none{
  overscroll-behavior-x: none;
}

.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-10{
  padding: 2.5rem;
}

.p-12{
  padding: 3rem;
}

.p-14{
  padding: 3.5rem;
}

.p-16{
  padding: 4rem;
}

.p-20{
  padding: 5rem;
}

.p-21{
  padding: 5.25rem;
}

.p-24{
  padding: 6rem;
}

.p-32{
  padding: 8rem;
}

.p-36{
  padding: 9rem;
}

.p-40{
  padding: 10rem;
}

.p-44{
  padding: 11rem;
}

.p-48{
  padding: 12rem;
}

.p-56{
  padding: 14rem;
}

.p-64{
  padding: 16rem;
}

.p-px{
  padding: 1px;
}

.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-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.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-21{
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.px-21{
  padding-left: 5.25rem;
  padding-right: 5.25rem;
}

.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-36{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.px-36{
  padding-left: 9rem;
  padding-right: 9rem;
}

.py-40{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.px-40{
  padding-left: 10rem;
  padding-right: 10rem;
}

.py-44{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.px-44{
  padding-left: 11rem;
  padding-right: 11rem;
}

.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;
}

.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-10{
  padding-top: 2.5rem;
}

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

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

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

.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-21{
  padding-top: 5.25rem;
}

.pr-21{
  padding-right: 5.25rem;
}

.pb-21{
  padding-bottom: 5.25rem;
}

.pl-21{
  padding-left: 5.25rem;
}

.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-36{
  padding-top: 9rem;
}

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

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

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

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

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

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

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

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

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

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

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

.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;
}

.placeholder-border::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.placeholder-border::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.placeholder-border::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.placeholder-border::placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.placeholder-form::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-form::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-form::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-form::placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-form-active::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-form-active::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-form-active::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-form-active::placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-transparent::-webkit-input-placeholder{
  color: transparent;
}

.placeholder-transparent::-moz-placeholder{
  color: transparent;
}

.placeholder-transparent::-ms-input-placeholder{
  color: transparent;
}

.placeholder-transparent::placeholder{
  color: transparent;
}

.placeholder-black::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.placeholder-black::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.placeholder-black::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.placeholder-black::placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.placeholder-grey-darkest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darkest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darkest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darkest::placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darker::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darker::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darker::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-darker::placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.placeholder-grey-dark::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-grey-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-grey-dark::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-grey-dark::placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.placeholder-grey::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-grey::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-grey::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-grey::placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.placeholder-grey-light::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.placeholder-grey-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.placeholder-grey-light::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.placeholder-grey-light::placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.placeholder-grey-lighter::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.placeholder-grey-lighter::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.placeholder-grey-lighter::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.placeholder-grey-lighter::placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.placeholder-grey-lightest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.placeholder-grey-lightest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.placeholder-grey-lightest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.placeholder-grey-lightest::placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.placeholder-white::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, 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-red::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.placeholder-red::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.placeholder-red::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.placeholder-red::placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.placeholder-green::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.placeholder-green::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.placeholder-green::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.placeholder-green::placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.placeholder-blue::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.placeholder-blue::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.placeholder-blue::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.placeholder-blue::placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.placeholder-orange::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.placeholder-orange::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.placeholder-orange::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.placeholder-orange::placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.placeholder-primary-darkest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.placeholder-primary-darkest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.placeholder-primary-darkest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.placeholder-primary-darkest::placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.placeholder-primary-darker::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.placeholder-primary-darker::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.placeholder-primary-darker::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.placeholder-primary-darker::placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.placeholder-primary-dark::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.placeholder-primary-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.placeholder-primary-dark::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.placeholder-primary-dark::placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.placeholder-primary::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.placeholder-primary::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.placeholder-primary::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.placeholder-primary::placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.placeholder-primary-light::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.placeholder-primary-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.placeholder-primary-light::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.placeholder-primary-light::placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.placeholder-primary-lighter::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.placeholder-primary-lighter::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.placeholder-primary-lighter::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.placeholder-primary-lighter::placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.placeholder-primary-lightest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.placeholder-primary-lightest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.placeholder-primary-lightest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.placeholder-primary-lightest::placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.placeholder-secondary-darkest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.placeholder-secondary-darkest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.placeholder-secondary-darkest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.placeholder-secondary-darkest::placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.placeholder-secondary-darker::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.placeholder-secondary-darker::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.placeholder-secondary-darker::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.placeholder-secondary-darker::placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.placeholder-secondary-dark::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.placeholder-secondary-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.placeholder-secondary-dark::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.placeholder-secondary-dark::placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.placeholder-secondary::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.placeholder-secondary::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.placeholder-secondary::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.placeholder-secondary::placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.placeholder-secondary-light::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.placeholder-secondary-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.placeholder-secondary-light::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.placeholder-secondary-light::placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.placeholder-secondary-lighter::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.placeholder-secondary-lighter::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.placeholder-secondary-lighter::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.placeholder-secondary-lighter::placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.placeholder-secondary-lightest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.placeholder-secondary-lightest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.placeholder-secondary-lightest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.placeholder-secondary-lightest::placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.placeholder-tertiary-darkest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.placeholder-tertiary-darkest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.placeholder-tertiary-darkest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.placeholder-tertiary-darkest::placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.placeholder-tertiary-darker::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.placeholder-tertiary-darker::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.placeholder-tertiary-darker::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.placeholder-tertiary-darker::placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.placeholder-tertiary-dark::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.placeholder-tertiary-dark::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.placeholder-tertiary-dark::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.placeholder-tertiary-dark::placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.placeholder-tertiary::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.placeholder-tertiary::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.placeholder-tertiary::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.placeholder-tertiary::placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.placeholder-tertiary-light::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.placeholder-tertiary-light::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.placeholder-tertiary-light::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.placeholder-tertiary-light::placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.placeholder-tertiary-lighter::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.placeholder-tertiary-lighter::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.placeholder-tertiary-lighter::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.placeholder-tertiary-lighter::placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.placeholder-tertiary-lightest::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.placeholder-tertiary-lightest::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.placeholder-tertiary-lightest::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.placeholder-tertiary-lightest::placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.focus\:placeholder-border:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.focus\:placeholder-border:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.focus\:placeholder-border:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.focus\:placeholder-border:focus::placeholder{
  --placeholder-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--placeholder-opacity));
}

.focus\:placeholder-form:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-form:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-form:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-form:focus::placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-form-active:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-form-active:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-form-active:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-form-active:focus::placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-transparent:focus::-webkit-input-placeholder{
  color: transparent;
}

.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-black:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.focus\:placeholder-black:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.focus\:placeholder-black:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.focus\:placeholder-black:focus::placeholder{
  --placeholder-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darkest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darkest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darker:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-darker:focus::placeholder{
  --placeholder-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--placeholder-opacity));
}

.focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-grey-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-grey-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--placeholder-opacity));
}

.focus\:placeholder-grey:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-grey:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-grey:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-grey:focus::placeholder{
  --placeholder-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--placeholder-opacity));
}

.focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.focus\:placeholder-grey-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.focus\:placeholder-grey-light:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.focus\:placeholder-grey-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lighter:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lighter:focus::placeholder{
  --placeholder-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lightest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.focus\:placeholder-grey-lightest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--placeholder-opacity));
}

.focus\:placeholder-white:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, 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-red:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.focus\:placeholder-red:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.focus\:placeholder-red:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.focus\:placeholder-red:focus::placeholder{
  --placeholder-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--placeholder-opacity));
}

.focus\:placeholder-green:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.focus\:placeholder-green:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.focus\:placeholder-green:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.focus\:placeholder-green:focus::placeholder{
  --placeholder-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--placeholder-opacity));
}

.focus\:placeholder-blue:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.focus\:placeholder-blue:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.focus\:placeholder-blue:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.focus\:placeholder-blue:focus::placeholder{
  --placeholder-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--placeholder-opacity));
}

.focus\:placeholder-orange:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.focus\:placeholder-orange:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.focus\:placeholder-orange:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.focus\:placeholder-orange:focus::placeholder{
  --placeholder-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darkest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darkest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darker:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.focus\:placeholder-primary-darker:focus::placeholder{
  --placeholder-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--placeholder-opacity));
}

.focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.focus\:placeholder-primary-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.focus\:placeholder-primary-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--placeholder-opacity));
}

.focus\:placeholder-primary:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.focus\:placeholder-primary:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.focus\:placeholder-primary:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.focus\:placeholder-primary:focus::placeholder{
  --placeholder-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--placeholder-opacity));
}

.focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.focus\:placeholder-primary-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.focus\:placeholder-primary-light:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.focus\:placeholder-primary-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lighter:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lighter:focus::placeholder{
  --placeholder-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lightest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.focus\:placeholder-primary-lightest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darkest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darker:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-darker:focus::placeholder{
  --placeholder-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--placeholder-opacity));
}

.focus\:placeholder-secondary:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.focus\:placeholder-secondary:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.focus\:placeholder-secondary:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.focus\:placeholder-secondary:focus::placeholder{
  --placeholder-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lighter:focus::placeholder{
  --placeholder-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.focus\:placeholder-secondary-lightest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darkest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-darker:focus::placeholder{
  --placeholder-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-dark:focus::placeholder{
  --placeholder-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary:focus::placeholder{
  --placeholder-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-light:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-light:focus::placeholder{
  --placeholder-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lighter:focus::placeholder{
  --placeholder-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.focus\:placeholder-tertiary-lightest:focus::placeholder{
  --placeholder-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--placeholder-opacity));
}

.placeholder-opacity-0::-webkit-input-placeholder{
  --placeholder-opacity: 0;
}

.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::-webkit-input-placeholder{
  --placeholder-opacity: 0.25;
}

.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::-webkit-input-placeholder{
  --placeholder-opacity: 0.5;
}

.placeholder-opacity-50::-moz-placeholder{
  --placeholder-opacity: 0.5;
}

.placeholder-opacity-50::-ms-input-placeholder{
  --placeholder-opacity: 0.5;
}

.placeholder-opacity-50::placeholder{
  --placeholder-opacity: 0.5;
}

.placeholder-opacity-75::-webkit-input-placeholder{
  --placeholder-opacity: 0.75;
}

.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-100::-webkit-input-placeholder{
  --placeholder-opacity: 1;
}

.placeholder-opacity-100::-moz-placeholder{
  --placeholder-opacity: 1;
}

.placeholder-opacity-100::-ms-input-placeholder{
  --placeholder-opacity: 1;
}

.placeholder-opacity-100::placeholder{
  --placeholder-opacity: 1;
}

.focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
  --placeholder-opacity: 0;
}

.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::-webkit-input-placeholder{
  --placeholder-opacity: 0.25;
}

.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::-webkit-input-placeholder{
  --placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-50:focus::-moz-placeholder{
  --placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
  --placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-50:focus::placeholder{
  --placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
  --placeholder-opacity: 0.75;
}

.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-100:focus::-webkit-input-placeholder{
  --placeholder-opacity: 1;
}

.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;
}

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

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

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.inset-0{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-auto{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.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;
}

.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;
}

.resize-none{
  resize: none;
}

.resize-y{
  resize: vertical;
}

.resize-x{
  resize: horizontal;
}

.resize{
  resize: both;
}

.shadow{
  -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
          box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
}

.shadow-md{
  -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
          box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
}

.shadow-lg{
  -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
          box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

.shadow-inner{
  -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
          box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

.shadow-outline{
  -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
          box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
}

.shadow-none{
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hover\:shadow:hover{
  -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
          box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
}

.hover\:shadow-md:hover{
  -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
          box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
}

.hover\:shadow-lg:hover{
  -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
          box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

.hover\:shadow-inner:hover{
  -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
          box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

.hover\:shadow-outline:hover{
  -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
          box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
}

.hover\:shadow-none:hover{
  -webkit-box-shadow: none;
          box-shadow: none;
}

.focus\:shadow:focus{
  -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
          box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
}

.focus\:shadow-md:focus{
  -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
          box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
}

.focus\:shadow-lg:focus{
  -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
          box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

.focus\:shadow-inner:focus{
  -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
          box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

.focus\:shadow-outline:focus{
  -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
          box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
}

.focus\:shadow-none:focus{
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fill-current{
  fill: currentColor;
}

.stroke-current{
  stroke: currentColor;
}

.stroke-0{
  stroke-width: 0;
}

.stroke-1{
  stroke-width: 1;
}

.stroke-2{
  stroke-width: 2;
}

.table-auto{
  table-layout: auto;
}

.table-fixed{
  table-layout: fixed;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.text-justify{
  text-align: justify;
}

.text-border{
  --text-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--text-opacity));
}

.text-form{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.text-form-active{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.text-transparent{
  color: transparent;
}

.text-black{
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.text-grey-darkest{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.text-grey-darker{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.text-grey-dark{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.text-grey{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.text-grey-light{
  --text-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--text-opacity));
}

.text-grey-lighter{
  --text-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--text-opacity));
}

.text-grey-lightest{
  --text-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--text-opacity));
}

.text-white{
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.text-red{
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
}

.text-green{
  --text-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--text-opacity));
}

.text-blue{
  --text-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--text-opacity));
}

.text-orange{
  --text-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--text-opacity));
}

.text-primary-darkest{
  --text-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--text-opacity));
}

.text-primary-darker{
  --text-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--text-opacity));
}

.text-primary-dark{
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
}

.text-primary{
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
}

.text-primary-light{
  --text-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--text-opacity));
}

.text-primary-lighter{
  --text-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--text-opacity));
}

.text-primary-lightest{
  --text-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--text-opacity));
}

.text-secondary-darkest{
  --text-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--text-opacity));
}

.text-secondary-darker{
  --text-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--text-opacity));
}

.text-secondary-dark{
  --text-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--text-opacity));
}

.text-secondary{
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.text-secondary-light{
  --text-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--text-opacity));
}

.text-secondary-lighter{
  --text-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--text-opacity));
}

.text-secondary-lightest{
  --text-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--text-opacity));
}

.text-tertiary-darkest{
  --text-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--text-opacity));
}

.text-tertiary-darker{
  --text-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--text-opacity));
}

.text-tertiary-dark{
  --text-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--text-opacity));
}

.text-tertiary{
  --text-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--text-opacity));
}

.text-tertiary-light{
  --text-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--text-opacity));
}

.text-tertiary-lighter{
  --text-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--text-opacity));
}

.text-tertiary-lightest{
  --text-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--text-opacity));
}

.hover\:text-border:hover{
  --text-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--text-opacity));
}

.hover\:text-form:hover{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.hover\:text-form-active:hover{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.hover\:text-transparent:hover{
  color: transparent;
}

.hover\:text-black:hover{
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.hover\:text-grey-darkest:hover{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.hover\:text-grey-darker:hover{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.hover\:text-grey-dark:hover{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.hover\:text-grey:hover{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.hover\:text-grey-light:hover{
  --text-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--text-opacity));
}

.hover\:text-grey-lighter:hover{
  --text-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--text-opacity));
}

.hover\:text-grey-lightest:hover{
  --text-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--text-opacity));
}

.hover\:text-white:hover{
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.hover\:text-red:hover{
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
}

.hover\:text-green:hover{
  --text-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--text-opacity));
}

.hover\:text-blue:hover{
  --text-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--text-opacity));
}

.hover\:text-orange:hover{
  --text-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--text-opacity));
}

.hover\:text-primary-darkest:hover{
  --text-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--text-opacity));
}

.hover\:text-primary-darker:hover{
  --text-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--text-opacity));
}

.hover\:text-primary-dark:hover{
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
}

.hover\:text-primary:hover{
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
}

.hover\:text-primary-light:hover{
  --text-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--text-opacity));
}

.hover\:text-primary-lighter:hover{
  --text-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--text-opacity));
}

.hover\:text-primary-lightest:hover{
  --text-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--text-opacity));
}

.hover\:text-secondary-darkest:hover{
  --text-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--text-opacity));
}

.hover\:text-secondary-darker:hover{
  --text-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--text-opacity));
}

.hover\:text-secondary-dark:hover{
  --text-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--text-opacity));
}

.hover\:text-secondary:hover{
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.hover\:text-secondary-light:hover{
  --text-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--text-opacity));
}

.hover\:text-secondary-lighter:hover{
  --text-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--text-opacity));
}

.hover\:text-secondary-lightest:hover{
  --text-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--text-opacity));
}

.hover\:text-tertiary-darkest:hover{
  --text-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--text-opacity));
}

.hover\:text-tertiary-darker:hover{
  --text-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--text-opacity));
}

.hover\:text-tertiary-dark:hover{
  --text-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--text-opacity));
}

.hover\:text-tertiary:hover{
  --text-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--text-opacity));
}

.hover\:text-tertiary-light:hover{
  --text-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--text-opacity));
}

.hover\:text-tertiary-lighter:hover{
  --text-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--text-opacity));
}

.hover\:text-tertiary-lightest:hover{
  --text-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--text-opacity));
}

.focus\:text-border:focus{
  --text-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--text-opacity));
}

.focus\:text-form:focus{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.focus\:text-form-active:focus{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.focus\:text-transparent:focus{
  color: transparent;
}

.focus\:text-black:focus{
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.focus\:text-grey-darkest:focus{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.focus\:text-grey-darker:focus{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.focus\:text-grey-dark:focus{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.focus\:text-grey:focus{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.focus\:text-grey-light:focus{
  --text-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--text-opacity));
}

.focus\:text-grey-lighter:focus{
  --text-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--text-opacity));
}

.focus\:text-grey-lightest:focus{
  --text-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--text-opacity));
}

.focus\:text-white:focus{
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.focus\:text-red:focus{
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
}

.focus\:text-green:focus{
  --text-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--text-opacity));
}

.focus\:text-blue:focus{
  --text-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--text-opacity));
}

.focus\:text-orange:focus{
  --text-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--text-opacity));
}

.focus\:text-primary-darkest:focus{
  --text-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--text-opacity));
}

.focus\:text-primary-darker:focus{
  --text-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--text-opacity));
}

.focus\:text-primary-dark:focus{
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
}

.focus\:text-primary:focus{
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
}

.focus\:text-primary-light:focus{
  --text-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--text-opacity));
}

.focus\:text-primary-lighter:focus{
  --text-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--text-opacity));
}

.focus\:text-primary-lightest:focus{
  --text-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--text-opacity));
}

.focus\:text-secondary-darkest:focus{
  --text-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--text-opacity));
}

.focus\:text-secondary-darker:focus{
  --text-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--text-opacity));
}

.focus\:text-secondary-dark:focus{
  --text-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--text-opacity));
}

.focus\:text-secondary:focus{
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.focus\:text-secondary-light:focus{
  --text-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--text-opacity));
}

.focus\:text-secondary-lighter:focus{
  --text-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--text-opacity));
}

.focus\:text-secondary-lightest:focus{
  --text-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--text-opacity));
}

.focus\:text-tertiary-darkest:focus{
  --text-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--text-opacity));
}

.focus\:text-tertiary-darker:focus{
  --text-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--text-opacity));
}

.focus\:text-tertiary-dark:focus{
  --text-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--text-opacity));
}

.focus\:text-tertiary:focus{
  --text-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--text-opacity));
}

.focus\:text-tertiary-light:focus{
  --text-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--text-opacity));
}

.focus\:text-tertiary-lighter:focus{
  --text-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--text-opacity));
}

.focus\:text-tertiary-lightest:focus{
  --text-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--text-opacity));
}

.focus\:text-border:focus{
  --text-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--text-opacity));
}

.focus\:text-form:focus{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.focus\:text-form-active:focus{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.focus\:text-transparent:focus{
  color: transparent;
}

.focus\:text-black:focus{
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.focus\:text-grey-darkest:focus{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.focus\:text-grey-darker:focus{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.focus\:text-grey-dark:focus{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.focus\:text-grey:focus{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.focus\:text-grey-light:focus{
  --text-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--text-opacity));
}

.focus\:text-grey-lighter:focus{
  --text-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--text-opacity));
}

.focus\:text-grey-lightest:focus{
  --text-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--text-opacity));
}

.focus\:text-white:focus{
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.focus\:text-red:focus{
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
}

.focus\:text-green:focus{
  --text-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--text-opacity));
}

.focus\:text-blue:focus{
  --text-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--text-opacity));
}

.focus\:text-orange:focus{
  --text-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--text-opacity));
}

.focus\:text-primary-darkest:focus{
  --text-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--text-opacity));
}

.focus\:text-primary-darker:focus{
  --text-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--text-opacity));
}

.focus\:text-primary-dark:focus{
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
}

.focus\:text-primary:focus{
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
}

.focus\:text-primary-light:focus{
  --text-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--text-opacity));
}

.focus\:text-primary-lighter:focus{
  --text-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--text-opacity));
}

.focus\:text-primary-lightest:focus{
  --text-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--text-opacity));
}

.focus\:text-secondary-darkest:focus{
  --text-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--text-opacity));
}

.focus\:text-secondary-darker:focus{
  --text-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--text-opacity));
}

.focus\:text-secondary-dark:focus{
  --text-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--text-opacity));
}

.focus\:text-secondary:focus{
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.focus\:text-secondary-light:focus{
  --text-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--text-opacity));
}

.focus\:text-secondary-lighter:focus{
  --text-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--text-opacity));
}

.focus\:text-secondary-lightest:focus{
  --text-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--text-opacity));
}

.focus\:text-tertiary-darkest:focus{
  --text-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--text-opacity));
}

.focus\:text-tertiary-darker:focus{
  --text-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--text-opacity));
}

.focus\:text-tertiary-dark:focus{
  --text-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--text-opacity));
}

.focus\:text-tertiary:focus{
  --text-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--text-opacity));
}

.focus\:text-tertiary-light:focus{
  --text-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--text-opacity));
}

.focus\:text-tertiary-lighter:focus{
  --text-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--text-opacity));
}

.focus\:text-tertiary-lightest:focus{
  --text-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--text-opacity));
}

.group:hover .group-hover\:text-border{
  --text-opacity: 1;
  color: #E6EBF5;
  color: rgba(230, 235, 245, var(--text-opacity));
}

.group:hover .group-hover\:text-form{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.group:hover .group-hover\:text-form-active{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.group:hover .group-hover\:text-transparent{
  color: transparent;
}

.group:hover .group-hover\:text-black{
  --text-opacity: 1;
  color: #212529;
  color: rgba(33, 37, 41, var(--text-opacity));
}

.group:hover .group-hover\:text-grey-darkest{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.group:hover .group-hover\:text-grey-darker{
  --text-opacity: 1;
  color: #9AA5C0;
  color: rgba(154, 165, 192, var(--text-opacity));
}

.group:hover .group-hover\:text-grey-dark{
  --text-opacity: 1;
  color: #42505C;
  color: rgba(66, 80, 92, var(--text-opacity));
}

.group:hover .group-hover\:text-grey{
  --text-opacity: 1;
  color: #79828B;
  color: rgba(121, 130, 139, var(--text-opacity));
}

.group:hover .group-hover\:text-grey-light{
  --text-opacity: 1;
  color: #B3BCC5;
  color: rgba(179, 188, 197, var(--text-opacity));
}

.group:hover .group-hover\:text-grey-lighter{
  --text-opacity: 1;
  color: #DEE4E9;
  color: rgba(222, 228, 233, var(--text-opacity));
}

.group:hover .group-hover\:text-grey-lightest{
  --text-opacity: 1;
  color: #F4F6F9;
  color: rgba(244, 246, 249, var(--text-opacity));
}

.group:hover .group-hover\:text-white{
  --text-opacity: 1;
  color: #ffffff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.group:hover .group-hover\:text-red{
  --text-opacity: 1;
  color: #D31A08;
  color: rgba(211, 26, 8, var(--text-opacity));
}

.group:hover .group-hover\:text-green{
  --text-opacity: 1;
  color: #66BB08;
  color: rgba(102, 187, 8, var(--text-opacity));
}

.group:hover .group-hover\:text-blue{
  --text-opacity: 1;
  color: #1FA8E2;
  color: rgba(31, 168, 226, var(--text-opacity));
}

.group:hover .group-hover\:text-orange{
  --text-opacity: 1;
  color: #F7940E;
  color: rgba(247, 148, 14, var(--text-opacity));
}

.group:hover .group-hover\:text-primary-darkest{
  --text-opacity: 1;
  color: #530f12;
  color: rgba(83, 15, 18, var(--text-opacity));
}

.group:hover .group-hover\:text-primary-darker{
  --text-opacity: 1;
  color: #7c171b;
  color: rgba(124, 23, 27, var(--text-opacity));
}

.group:hover .group-hover\:text-primary-dark{
  --text-opacity: 1;
  color: #a61e24;
  color: rgba(166, 30, 36, var(--text-opacity));
}

.group:hover .group-hover\:text-primary{
  --text-opacity: 1;
  color: #cf262d;
  color: rgba(207, 38, 45, var(--text-opacity));
}

.group:hover .group-hover\:text-primary-light{
  --text-opacity: 1;
  color: #d95157;
  color: rgba(217, 81, 87, var(--text-opacity));
}

.group:hover .group-hover\:text-primary-lighter{
  --text-opacity: 1;
  color: #e27d81;
  color: rgba(226, 125, 129, var(--text-opacity));
}

.group:hover .group-hover\:text-primary-lightest{
  --text-opacity: 1;
  color: #eca8ab;
  color: rgba(236, 168, 171, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary-darkest{
  --text-opacity: 1;
  color: #3e4525;
  color: rgba(62, 69, 37, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary-darker{
  --text-opacity: 1;
  color: #5e6837;
  color: rgba(94, 104, 55, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary-dark{
  --text-opacity: 1;
  color: #7d8a4a;
  color: rgba(125, 138, 74, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary{
  --text-opacity: 1;
  color: #9cad5c;
  color: rgba(156, 173, 92, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary-light{
  --text-opacity: 1;
  color: #b0bd7d;
  color: rgba(176, 189, 125, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary-lighter{
  --text-opacity: 1;
  color: #c4ce9d;
  color: rgba(196, 206, 157, var(--text-opacity));
}

.group:hover .group-hover\:text-secondary-lightest{
  --text-opacity: 1;
  color: #d7debe;
  color: rgba(215, 222, 190, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary-darkest{
  --text-opacity: 1;
  color: #0f2f21;
  color: rgba(15, 47, 33, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary-darker{
  --text-opacity: 1;
  color: #1a4731;
  color: rgba(26, 71, 49, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary-dark{
  --text-opacity: 1;
  color: #1f9d55;
  color: rgba(31, 157, 85, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary{
  --text-opacity: 1;
  color: #FFC500;
  color: rgba(255, 197, 0, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary-light{
  --text-opacity: 1;
  color: #51d88a;
  color: rgba(81, 216, 138, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary-lighter{
  --text-opacity: 1;
  color: #a2f5bf;
  color: rgba(162, 245, 191, var(--text-opacity));
}

.group:hover .group-hover\:text-tertiary-lightest{
  --text-opacity: 1;
  color: #e3fcec;
  color: rgba(227, 252, 236, var(--text-opacity));
}

.text-opacity-0{
  --text-opacity: 0;
}

.text-opacity-25{
  --text-opacity: 0.25;
}

.text-opacity-50{
  --text-opacity: 0.5;
}

.text-opacity-75{
  --text-opacity: 0.75;
}

.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: 0.5;
}

.hover\:text-opacity-75:hover{
  --text-opacity: 0.75;
}

.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: 0.5;
}

.focus\:text-opacity-75:focus{
  --text-opacity: 0.75;
}

.focus\:text-opacity-100:focus{
  --text-opacity: 1;
}

.italic{
  font-style: italic;
}

.not-italic{
  font-style: normal;
}

.uppercase{
  text-transform: uppercase;
}

.lowercase{
  text-transform: lowercase;
}

.capitalize{
  text-transform: capitalize;
}

.normal-case{
  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;
}

.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased{
  -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;
}

.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;
}

.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;
}

.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;
}

.visible{
  visibility: visible;
}

.invisible{
  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;
}

.break-normal{
  word-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.break-words{
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.break-all{
  word-break: break-all;
}

.truncate{
  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-44{
  width: 11rem;
}

.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;
}

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

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

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

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

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

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

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

.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-36{
  grid-gap: 9rem;
  gap: 9rem;
}

.gap-40{
  grid-gap: 10rem;
  gap: 10rem;
}

.gap-44{
  grid-gap: 11rem;
  gap: 11rem;
}

.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;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}

.col-gap-1{
  grid-column-gap: 0.25rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}

.col-gap-2{
  grid-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.col-gap-3{
  grid-column-gap: 0.75rem;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}

.col-gap-4{
  grid-column-gap: 1rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.col-gap-5{
  grid-column-gap: 1.25rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.col-gap-6{
  grid-column-gap: 1.5rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.col-gap-8{
  grid-column-gap: 2rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.col-gap-10{
  grid-column-gap: 2.5rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.col-gap-12{
  grid-column-gap: 3rem;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.col-gap-14{
  grid-column-gap: 3.5rem;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
}

.col-gap-16{
  grid-column-gap: 4rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}

.col-gap-20{
  grid-column-gap: 5rem;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

.col-gap-24{
  grid-column-gap: 6rem;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}

.col-gap-32{
  grid-column-gap: 8rem;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}

.col-gap-36{
  grid-column-gap: 9rem;
  -webkit-column-gap: 9rem;
     -moz-column-gap: 9rem;
          column-gap: 9rem;
}

.col-gap-40{
  grid-column-gap: 10rem;
  -webkit-column-gap: 10rem;
     -moz-column-gap: 10rem;
          column-gap: 10rem;
}

.col-gap-44{
  grid-column-gap: 11rem;
  -webkit-column-gap: 11rem;
     -moz-column-gap: 11rem;
          column-gap: 11rem;
}

.col-gap-48{
  grid-column-gap: 12rem;
  -webkit-column-gap: 12rem;
     -moz-column-gap: 12rem;
          column-gap: 12rem;
}

.col-gap-56{
  grid-column-gap: 14rem;
  -webkit-column-gap: 14rem;
     -moz-column-gap: 14rem;
          column-gap: 14rem;
}

.col-gap-64{
  grid-column-gap: 16rem;
  -webkit-column-gap: 16rem;
     -moz-column-gap: 16rem;
          column-gap: 16rem;
}

.col-gap-px{
  grid-column-gap: 1px;
  -webkit-column-gap: 1px;
     -moz-column-gap: 1px;
          column-gap: 1px;
}

.gap-x-0{
  grid-column-gap: 0;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}

.gap-x-1{
  grid-column-gap: 0.25rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}

.gap-x-2{
  grid-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.gap-x-3{
  grid-column-gap: 0.75rem;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}

.gap-x-4{
  grid-column-gap: 1rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.gap-x-5{
  grid-column-gap: 1.25rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.gap-x-6{
  grid-column-gap: 1.5rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.gap-x-8{
  grid-column-gap: 2rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.gap-x-10{
  grid-column-gap: 2.5rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.gap-x-12{
  grid-column-gap: 3rem;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.gap-x-14{
  grid-column-gap: 3.5rem;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
}

.gap-x-16{
  grid-column-gap: 4rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}

.gap-x-20{
  grid-column-gap: 5rem;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

.gap-x-24{
  grid-column-gap: 6rem;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}

.gap-x-32{
  grid-column-gap: 8rem;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}

.gap-x-36{
  grid-column-gap: 9rem;
  -webkit-column-gap: 9rem;
     -moz-column-gap: 9rem;
          column-gap: 9rem;
}

.gap-x-40{
  grid-column-gap: 10rem;
  -webkit-column-gap: 10rem;
     -moz-column-gap: 10rem;
          column-gap: 10rem;
}

.gap-x-44{
  grid-column-gap: 11rem;
  -webkit-column-gap: 11rem;
     -moz-column-gap: 11rem;
          column-gap: 11rem;
}

.gap-x-48{
  grid-column-gap: 12rem;
  -webkit-column-gap: 12rem;
     -moz-column-gap: 12rem;
          column-gap: 12rem;
}

.gap-x-56{
  grid-column-gap: 14rem;
  -webkit-column-gap: 14rem;
     -moz-column-gap: 14rem;
          column-gap: 14rem;
}

.gap-x-64{
  grid-column-gap: 16rem;
  -webkit-column-gap: 16rem;
     -moz-column-gap: 16rem;
          column-gap: 16rem;
}

.gap-x-px{
  grid-column-gap: 1px;
  -webkit-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-36{
  grid-row-gap: 9rem;
  row-gap: 9rem;
}

.row-gap-40{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.row-gap-44{
  grid-row-gap: 11rem;
  row-gap: 11rem;
}

.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-36{
  grid-row-gap: 9rem;
  row-gap: 9rem;
}

.gap-y-40{
  grid-row-gap: 10rem;
  row-gap: 10rem;
}

.gap-y-44{
  grid-row-gap: 11rem;
  row-gap: 11rem;
}

.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;
}

.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;
}

.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;
}

.auto-cols-auto{
  grid-auto-columns: auto;
}

.auto-cols-min{
  grid-auto-columns: -webkit-min-content;
  grid-auto-columns: min-content;
}

.auto-cols-max{
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
}

.auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-start-1{
  grid-column-start: 1;
}

.col-start-2{
  grid-column-start: 2;
}

.col-start-3{
  grid-column-start: 3;
}

.col-start-4{
  grid-column-start: 4;
}

.col-start-5{
  grid-column-start: 5;
}

.col-start-6{
  grid-column-start: 6;
}

.col-start-7{
  grid-column-start: 7;
}

.col-start-8{
  grid-column-start: 8;
}

.col-start-9{
  grid-column-start: 9;
}

.col-start-10{
  grid-column-start: 10;
}

.col-start-11{
  grid-column-start: 11;
}

.col-start-12{
  grid-column-start: 12;
}

.col-start-13{
  grid-column-start: 13;
}

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

.col-end-1{
  grid-column-end: 1;
}

.col-end-2{
  grid-column-end: 2;
}

.col-end-3{
  grid-column-end: 3;
}

.col-end-4{
  grid-column-end: 4;
}

.col-end-5{
  grid-column-end: 5;
}

.col-end-6{
  grid-column-end: 6;
}

.col-end-7{
  grid-column-end: 7;
}

.col-end-8{
  grid-column-end: 8;
}

.col-end-9{
  grid-column-end: 9;
}

.col-end-10{
  grid-column-end: 10;
}

.col-end-11{
  grid-column-end: 11;
}

.col-end-12{
  grid-column-end: 12;
}

.col-end-13{
  grid-column-end: 13;
}

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

.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;
}

.auto-rows-auto{
  grid-auto-rows: auto;
}

.auto-rows-min{
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}

.auto-rows-max{
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
}

.auto-rows-fr{
  grid-auto-rows: minmax(0, 1fr);
}

.row-auto{
  grid-row: auto;
}

.row-span-1{
  grid-row: span 1 / span 1;
}

.row-span-2{
  grid-row: span 2 / span 2;
}

.row-span-3{
  grid-row: span 3 / span 3;
}

.row-span-4{
  grid-row: span 4 / span 4;
}

.row-span-5{
  grid-row: span 5 / span 5;
}

.row-span-6{
  grid-row: span 6 / span 6;
}

.row-span-full{
  grid-row: 1 / -1;
}

.row-start-1{
  grid-row-start: 1;
}

.row-start-2{
  grid-row-start: 2;
}

.row-start-3{
  grid-row-start: 3;
}

.row-start-4{
  grid-row-start: 4;
}

.row-start-5{
  grid-row-start: 5;
}

.row-start-6{
  grid-row-start: 6;
}

.row-start-7{
  grid-row-start: 7;
}

.row-start-auto{
  grid-row-start: auto;
}

.row-end-1{
  grid-row-end: 1;
}

.row-end-2{
  grid-row-end: 2;
}

.row-end-3{
  grid-row-end: 3;
}

.row-end-4{
  grid-row-end: 4;
}

.row-end-5{
  grid-row-end: 5;
}

.row-end-6{
  grid-row-end: 6;
}

.row-end-7{
  grid-row-end: 7;
}

.row-end-auto{
  grid-row-end: auto;
}

.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;
  -webkit-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: 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{
  -webkit-transform: none;
          transform: none;
}

.origin-center{
  -webkit-transform-origin: center;
          transform-origin: center;
}

.origin-top{
  -webkit-transform-origin: top;
          transform-origin: top;
}

.origin-top-right{
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.origin-right{
  -webkit-transform-origin: right;
          transform-origin: right;
}

.origin-bottom-right{
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.origin-bottom{
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.origin-bottom-left{
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.origin-left{
  -webkit-transform-origin: left;
          transform-origin: left;
}

.origin-top-left{
  -webkit-transform-origin: top left;
          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;
}

.rotate-0{
  --transform-rotate: 0;
}

.rotate-1{
  --transform-rotate: 1deg;
}

.rotate-2{
  --transform-rotate: 2deg;
}

.rotate-3{
  --transform-rotate: 3deg;
}

.rotate-6{
  --transform-rotate: 6deg;
}

.rotate-12{
  --transform-rotate: 12deg;
}

.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;
}

.-rotate-12{
  --transform-rotate: -12deg;
}

.-rotate-6{
  --transform-rotate: -6deg;
}

.-rotate-3{
  --transform-rotate: -3deg;
}

.-rotate-2{
  --transform-rotate: -2deg;
}

.-rotate-1{
  --transform-rotate: -1deg;
}

.hover\:rotate-0:hover{
  --transform-rotate: 0;
}

.hover\:rotate-1:hover{
  --transform-rotate: 1deg;
}

.hover\:rotate-2:hover{
  --transform-rotate: 2deg;
}

.hover\:rotate-3:hover{
  --transform-rotate: 3deg;
}

.hover\:rotate-6:hover{
  --transform-rotate: 6deg;
}

.hover\:rotate-12:hover{
  --transform-rotate: 12deg;
}

.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;
}

.hover\:-rotate-12:hover{
  --transform-rotate: -12deg;
}

.hover\:-rotate-6:hover{
  --transform-rotate: -6deg;
}

.hover\:-rotate-3:hover{
  --transform-rotate: -3deg;
}

.hover\:-rotate-2:hover{
  --transform-rotate: -2deg;
}

.hover\:-rotate-1:hover{
  --transform-rotate: -1deg;
}

.focus\:rotate-0:focus{
  --transform-rotate: 0;
}

.focus\:rotate-1:focus{
  --transform-rotate: 1deg;
}

.focus\:rotate-2:focus{
  --transform-rotate: 2deg;
}

.focus\:rotate-3:focus{
  --transform-rotate: 3deg;
}

.focus\:rotate-6:focus{
  --transform-rotate: 6deg;
}

.focus\:rotate-12:focus{
  --transform-rotate: 12deg;
}

.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;
}

.focus\:-rotate-12:focus{
  --transform-rotate: -12deg;
}

.focus\:-rotate-6:focus{
  --transform-rotate: -6deg;
}

.focus\:-rotate-3:focus{
  --transform-rotate: -3deg;
}

.focus\:-rotate-2:focus{
  --transform-rotate: -2deg;
}

.focus\:-rotate-1:focus{
  --transform-rotate: -1deg;
}

.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-36{
  --transform-translate-x: 9rem;
}

.translate-x-40{
  --transform-translate-x: 10rem;
}

.translate-x-44{
  --transform-translate-x: 11rem;
}

.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-36{
  --transform-translate-x: -9rem;
}

.-translate-x-40{
  --transform-translate-x: -10rem;
}

.-translate-x-44{
  --transform-translate-x: -11rem;
}

.-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-36{
  --transform-translate-y: 9rem;
}

.translate-y-40{
  --transform-translate-y: 10rem;
}

.translate-y-44{
  --transform-translate-y: 11rem;
}

.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-36{
  --transform-translate-y: -9rem;
}

.-translate-y-40{
  --transform-translate-y: -10rem;
}

.-translate-y-44{
  --transform-translate-y: -11rem;
}

.-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-36:hover{
  --transform-translate-x: 9rem;
}

.hover\:translate-x-40:hover{
  --transform-translate-x: 10rem;
}

.hover\:translate-x-44:hover{
  --transform-translate-x: 11rem;
}

.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-36:hover{
  --transform-translate-x: -9rem;
}

.hover\:-translate-x-40:hover{
  --transform-translate-x: -10rem;
}

.hover\:-translate-x-44:hover{
  --transform-translate-x: -11rem;
}

.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-36:hover{
  --transform-translate-y: 9rem;
}

.hover\:translate-y-40:hover{
  --transform-translate-y: 10rem;
}

.hover\:translate-y-44:hover{
  --transform-translate-y: 11rem;
}

.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-36:hover{
  --transform-translate-y: -9rem;
}

.hover\:-translate-y-40:hover{
  --transform-translate-y: -10rem;
}

.hover\:-translate-y-44:hover{
  --transform-translate-y: -11rem;
}

.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-36:focus{
  --transform-translate-x: 9rem;
}

.focus\:translate-x-40:focus{
  --transform-translate-x: 10rem;
}

.focus\:translate-x-44:focus{
  --transform-translate-x: 11rem;
}

.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-36:focus{
  --transform-translate-x: -9rem;
}

.focus\:-translate-x-40:focus{
  --transform-translate-x: -10rem;
}

.focus\:-translate-x-44:focus{
  --transform-translate-x: -11rem;
}

.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-36:focus{
  --transform-translate-y: 9rem;
}

.focus\:translate-y-40:focus{
  --transform-translate-y: 10rem;
}

.focus\:translate-y-44:focus{
  --transform-translate-y: 11rem;
}

.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-36:focus{
  --transform-translate-y: -9rem;
}

.focus\:-translate-y-40:focus{
  --transform-translate-y: -10rem;
}

.focus\:-translate-y-44:focus{
  --transform-translate-y: -11rem;
}

.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%;
}

.skew-x-0{
  --transform-skew-x: 0;
}

.skew-x-1{
  --transform-skew-x: 1deg;
}

.skew-x-2{
  --transform-skew-x: 2deg;
}

.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-x-2{
  --transform-skew-x: -2deg;
}

.-skew-x-1{
  --transform-skew-x: -1deg;
}

.skew-y-0{
  --transform-skew-y: 0;
}

.skew-y-1{
  --transform-skew-y: 1deg;
}

.skew-y-2{
  --transform-skew-y: 2deg;
}

.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;
}

.-skew-y-2{
  --transform-skew-y: -2deg;
}

.-skew-y-1{
  --transform-skew-y: -1deg;
}

.hover\:skew-x-0:hover{
  --transform-skew-x: 0;
}

.hover\:skew-x-1:hover{
  --transform-skew-x: 1deg;
}

.hover\:skew-x-2:hover{
  --transform-skew-x: 2deg;
}

.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-x-2:hover{
  --transform-skew-x: -2deg;
}

.hover\:-skew-x-1:hover{
  --transform-skew-x: -1deg;
}

.hover\:skew-y-0:hover{
  --transform-skew-y: 0;
}

.hover\:skew-y-1:hover{
  --transform-skew-y: 1deg;
}

.hover\:skew-y-2:hover{
  --transform-skew-y: 2deg;
}

.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;
}

.hover\:-skew-y-2:hover{
  --transform-skew-y: -2deg;
}

.hover\:-skew-y-1:hover{
  --transform-skew-y: -1deg;
}

.focus\:skew-x-0:focus{
  --transform-skew-x: 0;
}

.focus\:skew-x-1:focus{
  --transform-skew-x: 1deg;
}

.focus\:skew-x-2:focus{
  --transform-skew-x: 2deg;
}

.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-x-2:focus{
  --transform-skew-x: -2deg;
}

.focus\:-skew-x-1:focus{
  --transform-skew-x: -1deg;
}

.focus\:skew-y-0:focus{
  --transform-skew-y: 0;
}

.focus\:skew-y-1:focus{
  --transform-skew-y: 1deg;
}

.focus\:skew-y-2:focus{
  --transform-skew-y: 2deg;
}

.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;
}

.focus\:-skew-y-2:focus{
  --transform-skew-y: -2deg;
}

.focus\:-skew-y-1:focus{
  --transform-skew-y: -1deg;
}

.transition-none{
  -webkit-transition-property: none;
  transition-property: none;
}

.transition-all{
  -webkit-transition-property: all;
  transition-property: all;
}

.transition{
  -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
}

.transition-colors{
  -webkit-transition-property: background-color, border-color, color, fill, stroke;
  transition-property: background-color, border-color, color, fill, stroke;
}

.transition-opacity{
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.transition-shadow{
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
}

.transition-transform{
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.ease-linear{
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.ease-in{
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out{
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out{
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-75{
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
}

.duration-100{
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}

.duration-150{
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

.duration-200{
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}

.duration-300{
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.duration-500{
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.duration-700{
  -webkit-transition-duration: 700ms;
          transition-duration: 700ms;
}

.duration-1000{
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.delay-75{
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}

.delay-100{
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.delay-150{
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.delay-200{
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.delay-300{
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.delay-500{
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

.delay-700{
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

.delay-1000{
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

@-webkit-keyframes spin{
  to{
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin{
  to{
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes ping{
  75%, 100%{
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping{
  75%, 100%{
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse{
  50%{
    opacity: .5;
  }
}

@keyframes pulse{
  50%{
    opacity: .5;
  }
}

@-webkit-keyframes bounce{
  0%, 100%{
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce{
  0%, 100%{
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-none{
  -webkit-animation: none;
          animation: none;
}

.animate-spin{
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.animate-ping{
  -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
          animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse{
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce{
  -webkit-animation: bounce 1s infinite;
          animation: bounce 1s infinite;
}

.bg-border-10{
  background-color: rgba(230, 235, 245, 0.1);
}

.bg-form-10{
  background-color: rgba(121, 130, 139, 0.1);
}

.bg-form-active-10{
  background-color: rgba(66, 80, 92, 0.1);
}

.bg-black-10{
  background-color: rgba(33, 37, 41, 0.1);
}

.bg-grey-darkest-10{
  background-color: rgba(154, 165, 192, 0.1);
}

.bg-grey-darker-10{
  background-color: rgba(154, 165, 192, 0.1);
}

.bg-grey-dark-10{
  background-color: rgba(66, 80, 92, 0.1);
}

.bg-grey-10{
  background-color: rgba(121, 130, 139, 0.1);
}

.bg-grey-light-10{
  background-color: rgba(179, 188, 197, 0.1);
}

.bg-grey-lighter-10{
  background-color: rgba(222, 228, 233, 0.1);
}

.bg-grey-lightest-10{
  background-color: rgba(244, 246, 249, 0.1);
}

.bg-white-10{
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-red-10{
  background-color: rgba(211, 26, 8, 0.1);
}

.bg-green-10{
  background-color: rgba(102, 187, 8, 0.1);
}

.bg-blue-10{
  background-color: rgba(31, 168, 226, 0.1);
}

.bg-orange-10{
  background-color: rgba(247, 148, 14, 0.1);
}

.bg-primary-darkest-10{
  background-color: rgba(83, 15, 18, 0.1);
}

.bg-primary-darker-10{
  background-color: rgba(124, 23, 27, 0.1);
}

.bg-primary-dark-10{
  background-color: rgba(166, 30, 36, 0.1);
}

.bg-primary-10{
  background-color: rgba(207, 38, 45, 0.1);
}

.bg-primary-light-10{
  background-color: rgba(217, 81, 87, 0.1);
}

.bg-primary-lighter-10{
  background-color: rgba(226, 125, 129, 0.1);
}

.bg-primary-lightest-10{
  background-color: rgba(236, 168, 171, 0.1);
}

.bg-secondary-darkest-10{
  background-color: rgba(62, 69, 37, 0.1);
}

.bg-secondary-darker-10{
  background-color: rgba(94, 104, 55, 0.1);
}

.bg-secondary-dark-10{
  background-color: rgba(125, 138, 74, 0.1);
}

.bg-secondary-10{
  background-color: rgba(156, 173, 92, 0.1);
}

.bg-secondary-light-10{
  background-color: rgba(176, 189, 125, 0.1);
}

.bg-secondary-lighter-10{
  background-color: rgba(196, 206, 157, 0.1);
}

.bg-secondary-lightest-10{
  background-color: rgba(215, 222, 190, 0.1);
}

.bg-tertiary-darkest-10{
  background-color: rgba(15, 47, 33, 0.1);
}

.bg-tertiary-darker-10{
  background-color: rgba(26, 71, 49, 0.1);
}

.bg-tertiary-dark-10{
  background-color: rgba(31, 157, 85, 0.1);
}

.bg-tertiary-10{
  background-color: rgba(255, 197, 0, 0.1);
}

.bg-tertiary-light-10{
  background-color: rgba(81, 216, 138, 0.1);
}

.bg-tertiary-lighter-10{
  background-color: rgba(162, 245, 191, 0.1);
}

.bg-tertiary-lightest-10{
  background-color: rgba(227, 252, 236, 0.1);
}

.hover\:bg-border-10:hover{
  background-color: rgba(230, 235, 245, 0.1);
}

.hover\:bg-form-10:hover{
  background-color: rgba(121, 130, 139, 0.1);
}

.hover\:bg-form-active-10:hover{
  background-color: rgba(66, 80, 92, 0.1);
}

.hover\:bg-black-10:hover{
  background-color: rgba(33, 37, 41, 0.1);
}

.hover\:bg-grey-darkest-10:hover{
  background-color: rgba(154, 165, 192, 0.1);
}

.hover\:bg-grey-darker-10:hover{
  background-color: rgba(154, 165, 192, 0.1);
}

.hover\:bg-grey-dark-10:hover{
  background-color: rgba(66, 80, 92, 0.1);
}

.hover\:bg-grey-10:hover{
  background-color: rgba(121, 130, 139, 0.1);
}

.hover\:bg-grey-light-10:hover{
  background-color: rgba(179, 188, 197, 0.1);
}

.hover\:bg-grey-lighter-10:hover{
  background-color: rgba(222, 228, 233, 0.1);
}

.hover\:bg-grey-lightest-10:hover{
  background-color: rgba(244, 246, 249, 0.1);
}

.hover\:bg-white-10:hover{
  background-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-red-10:hover{
  background-color: rgba(211, 26, 8, 0.1);
}

.hover\:bg-green-10:hover{
  background-color: rgba(102, 187, 8, 0.1);
}

.hover\:bg-blue-10:hover{
  background-color: rgba(31, 168, 226, 0.1);
}

.hover\:bg-orange-10:hover{
  background-color: rgba(247, 148, 14, 0.1);
}

.hover\:bg-primary-darkest-10:hover{
  background-color: rgba(83, 15, 18, 0.1);
}

.hover\:bg-primary-darker-10:hover{
  background-color: rgba(124, 23, 27, 0.1);
}

.hover\:bg-primary-dark-10:hover{
  background-color: rgba(166, 30, 36, 0.1);
}

.hover\:bg-primary-10:hover{
  background-color: rgba(207, 38, 45, 0.1);
}

.hover\:bg-primary-light-10:hover{
  background-color: rgba(217, 81, 87, 0.1);
}

.hover\:bg-primary-lighter-10:hover{
  background-color: rgba(226, 125, 129, 0.1);
}

.hover\:bg-primary-lightest-10:hover{
  background-color: rgba(236, 168, 171, 0.1);
}

.hover\:bg-secondary-darkest-10:hover{
  background-color: rgba(62, 69, 37, 0.1);
}

.hover\:bg-secondary-darker-10:hover{
  background-color: rgba(94, 104, 55, 0.1);
}

.hover\:bg-secondary-dark-10:hover{
  background-color: rgba(125, 138, 74, 0.1);
}

.hover\:bg-secondary-10:hover{
  background-color: rgba(156, 173, 92, 0.1);
}

.hover\:bg-secondary-light-10:hover{
  background-color: rgba(176, 189, 125, 0.1);
}

.hover\:bg-secondary-lighter-10:hover{
  background-color: rgba(196, 206, 157, 0.1);
}

.hover\:bg-secondary-lightest-10:hover{
  background-color: rgba(215, 222, 190, 0.1);
}

.hover\:bg-tertiary-darkest-10:hover{
  background-color: rgba(15, 47, 33, 0.1);
}

.hover\:bg-tertiary-darker-10:hover{
  background-color: rgba(26, 71, 49, 0.1);
}

.hover\:bg-tertiary-dark-10:hover{
  background-color: rgba(31, 157, 85, 0.1);
}

.hover\:bg-tertiary-10:hover{
  background-color: rgba(255, 197, 0, 0.1);
}

.hover\:bg-tertiary-light-10:hover{
  background-color: rgba(81, 216, 138, 0.1);
}

.hover\:bg-tertiary-lighter-10:hover{
  background-color: rgba(162, 245, 191, 0.1);
}

.hover\:bg-tertiary-lightest-10:hover{
  background-color: rgba(227, 252, 236, 0.1);
}

.focus\:bg-border-10:focus{
  background-color: rgba(230, 235, 245, 0.1);
}

.focus\:bg-form-10:focus{
  background-color: rgba(121, 130, 139, 0.1);
}

.focus\:bg-form-active-10:focus{
  background-color: rgba(66, 80, 92, 0.1);
}

.focus\:bg-black-10:focus{
  background-color: rgba(33, 37, 41, 0.1);
}

.focus\:bg-grey-darkest-10:focus{
  background-color: rgba(154, 165, 192, 0.1);
}

.focus\:bg-grey-darker-10:focus{
  background-color: rgba(154, 165, 192, 0.1);
}

.focus\:bg-grey-dark-10:focus{
  background-color: rgba(66, 80, 92, 0.1);
}

.focus\:bg-grey-10:focus{
  background-color: rgba(121, 130, 139, 0.1);
}

.focus\:bg-grey-light-10:focus{
  background-color: rgba(179, 188, 197, 0.1);
}

.focus\:bg-grey-lighter-10:focus{
  background-color: rgba(222, 228, 233, 0.1);
}

.focus\:bg-grey-lightest-10:focus{
  background-color: rgba(244, 246, 249, 0.1);
}

.focus\:bg-white-10:focus{
  background-color: rgba(255, 255, 255, 0.1);
}

.focus\:bg-red-10:focus{
  background-color: rgba(211, 26, 8, 0.1);
}

.focus\:bg-green-10:focus{
  background-color: rgba(102, 187, 8, 0.1);
}

.focus\:bg-blue-10:focus{
  background-color: rgba(31, 168, 226, 0.1);
}

.focus\:bg-orange-10:focus{
  background-color: rgba(247, 148, 14, 0.1);
}

.focus\:bg-primary-darkest-10:focus{
  background-color: rgba(83, 15, 18, 0.1);
}

.focus\:bg-primary-darker-10:focus{
  background-color: rgba(124, 23, 27, 0.1);
}

.focus\:bg-primary-dark-10:focus{
  background-color: rgba(166, 30, 36, 0.1);
}

.focus\:bg-primary-10:focus{
  background-color: rgba(207, 38, 45, 0.1);
}

.focus\:bg-primary-light-10:focus{
  background-color: rgba(217, 81, 87, 0.1);
}

.focus\:bg-primary-lighter-10:focus{
  background-color: rgba(226, 125, 129, 0.1);
}

.focus\:bg-primary-lightest-10:focus{
  background-color: rgba(236, 168, 171, 0.1);
}

.focus\:bg-secondary-darkest-10:focus{
  background-color: rgba(62, 69, 37, 0.1);
}

.focus\:bg-secondary-darker-10:focus{
  background-color: rgba(94, 104, 55, 0.1);
}

.focus\:bg-secondary-dark-10:focus{
  background-color: rgba(125, 138, 74, 0.1);
}

.focus\:bg-secondary-10:focus{
  background-color: rgba(156, 173, 92, 0.1);
}

.focus\:bg-secondary-light-10:focus{
  background-color: rgba(176, 189, 125, 0.1);
}

.focus\:bg-secondary-lighter-10:focus{
  background-color: rgba(196, 206, 157, 0.1);
}

.focus\:bg-secondary-lightest-10:focus{
  background-color: rgba(215, 222, 190, 0.1);
}

.focus\:bg-tertiary-darkest-10:focus{
  background-color: rgba(15, 47, 33, 0.1);
}

.focus\:bg-tertiary-darker-10:focus{
  background-color: rgba(26, 71, 49, 0.1);
}

.focus\:bg-tertiary-dark-10:focus{
  background-color: rgba(31, 157, 85, 0.1);
}

.focus\:bg-tertiary-10:focus{
  background-color: rgba(255, 197, 0, 0.1);
}

.focus\:bg-tertiary-light-10:focus{
  background-color: rgba(81, 216, 138, 0.1);
}

.focus\:bg-tertiary-lighter-10:focus{
  background-color: rgba(162, 245, 191, 0.1);
}

.focus\:bg-tertiary-lightest-10:focus{
  background-color: rgba(227, 252, 236, 0.1);
}

.focus\:bg-border-10:focus{
  background-color: rgba(230, 235, 245, 0.1);
}

.focus\:bg-form-10:focus{
  background-color: rgba(121, 130, 139, 0.1);
}

.focus\:bg-form-active-10:focus{
  background-color: rgba(66, 80, 92, 0.1);
}

.focus\:bg-black-10:focus{
  background-color: rgba(33, 37, 41, 0.1);
}

.focus\:bg-grey-darkest-10:focus{
  background-color: rgba(154, 165, 192, 0.1);
}

.focus\:bg-grey-darker-10:focus{
  background-color: rgba(154, 165, 192, 0.1);
}

.focus\:bg-grey-dark-10:focus{
  background-color: rgba(66, 80, 92, 0.1);
}

.focus\:bg-grey-10:focus{
  background-color: rgba(121, 130, 139, 0.1);
}

.focus\:bg-grey-light-10:focus{
  background-color: rgba(179, 188, 197, 0.1);
}

.focus\:bg-grey-lighter-10:focus{
  background-color: rgba(222, 228, 233, 0.1);
}

.focus\:bg-grey-lightest-10:focus{
  background-color: rgba(244, 246, 249, 0.1);
}

.focus\:bg-white-10:focus{
  background-color: rgba(255, 255, 255, 0.1);
}

.focus\:bg-red-10:focus{
  background-color: rgba(211, 26, 8, 0.1);
}

.focus\:bg-green-10:focus{
  background-color: rgba(102, 187, 8, 0.1);
}

.focus\:bg-blue-10:focus{
  background-color: rgba(31, 168, 226, 0.1);
}

.focus\:bg-orange-10:focus{
  background-color: rgba(247, 148, 14, 0.1);
}

.focus\:bg-primary-darkest-10:focus{
  background-color: rgba(83, 15, 18, 0.1);
}

.focus\:bg-primary-darker-10:focus{
  background-color: rgba(124, 23, 27, 0.1);
}

.focus\:bg-primary-dark-10:focus{
  background-color: rgba(166, 30, 36, 0.1);
}

.focus\:bg-primary-10:focus{
  background-color: rgba(207, 38, 45, 0.1);
}

.focus\:bg-primary-light-10:focus{
  background-color: rgba(217, 81, 87, 0.1);
}

.focus\:bg-primary-lighter-10:focus{
  background-color: rgba(226, 125, 129, 0.1);
}

.focus\:bg-primary-lightest-10:focus{
  background-color: rgba(236, 168, 171, 0.1);
}

.focus\:bg-secondary-darkest-10:focus{
  background-color: rgba(62, 69, 37, 0.1);
}

.focus\:bg-secondary-darker-10:focus{
  background-color: rgba(94, 104, 55, 0.1);
}

.focus\:bg-secondary-dark-10:focus{
  background-color: rgba(125, 138, 74, 0.1);
}

.focus\:bg-secondary-10:focus{
  background-color: rgba(156, 173, 92, 0.1);
}

.focus\:bg-secondary-light-10:focus{
  background-color: rgba(176, 189, 125, 0.1);
}

.focus\:bg-secondary-lighter-10:focus{
  background-color: rgba(196, 206, 157, 0.1);
}

.focus\:bg-secondary-lightest-10:focus{
  background-color: rgba(215, 222, 190, 0.1);
}

.focus\:bg-tertiary-darkest-10:focus{
  background-color: rgba(15, 47, 33, 0.1);
}

.focus\:bg-tertiary-darker-10:focus{
  background-color: rgba(26, 71, 49, 0.1);
}

.focus\:bg-tertiary-dark-10:focus{
  background-color: rgba(31, 157, 85, 0.1);
}

.focus\:bg-tertiary-10:focus{
  background-color: rgba(255, 197, 0, 0.1);
}

.focus\:bg-tertiary-light-10:focus{
  background-color: rgba(81, 216, 138, 0.1);
}

.focus\:bg-tertiary-lighter-10:focus{
  background-color: rgba(162, 245, 191, 0.1);
}

.focus\:bg-tertiary-lightest-10:focus{
  background-color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:bg-border-10{
  background-color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:bg-form-10{
  background-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:bg-form-active-10{
  background-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:bg-black-10{
  background-color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:bg-grey-darkest-10{
  background-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:bg-grey-darker-10{
  background-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:bg-grey-dark-10{
  background-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:bg-grey-10{
  background-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:bg-grey-light-10{
  background-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:bg-grey-lighter-10{
  background-color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:bg-grey-lightest-10{
  background-color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:bg-white-10{
  background-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:bg-red-10{
  background-color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:bg-green-10{
  background-color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:bg-blue-10{
  background-color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:bg-orange-10{
  background-color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:bg-primary-darkest-10{
  background-color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:bg-primary-darker-10{
  background-color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:bg-primary-dark-10{
  background-color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:bg-primary-10{
  background-color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:bg-primary-light-10{
  background-color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:bg-primary-lighter-10{
  background-color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:bg-primary-lightest-10{
  background-color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:bg-secondary-darkest-10{
  background-color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:bg-secondary-darker-10{
  background-color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:bg-secondary-dark-10{
  background-color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:bg-secondary-10{
  background-color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:bg-secondary-light-10{
  background-color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:bg-secondary-lighter-10{
  background-color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:bg-secondary-lightest-10{
  background-color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:bg-tertiary-darkest-10{
  background-color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:bg-tertiary-darker-10{
  background-color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:bg-tertiary-dark-10{
  background-color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:bg-tertiary-10{
  background-color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:bg-tertiary-light-10{
  background-color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:bg-tertiary-lighter-10{
  background-color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:bg-tertiary-lightest-10{
  background-color: rgba(227, 252, 236, 0.1);
}

.border-border-10{
  border-color: rgba(230, 235, 245, 0.1);
}

.border-t-border-10{
  border-top-color: rgba(230, 235, 245, 0.1);
}

.border-r-border-10{
  border-right-color: rgba(230, 235, 245, 0.1);
}

.border-b-border-10{
  border-bottom-color: rgba(230, 235, 245, 0.1);
}

.border-l-border-10{
  border-left-color: rgba(230, 235, 245, 0.1);
}

.border-form-10{
  border-color: rgba(121, 130, 139, 0.1);
}

.border-t-form-10{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.border-r-form-10{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.border-b-form-10{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.border-l-form-10{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.border-form-active-10{
  border-color: rgba(66, 80, 92, 0.1);
}

.border-t-form-active-10{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.border-r-form-active-10{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.border-b-form-active-10{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.border-l-form-active-10{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.border-black-10{
  border-color: rgba(33, 37, 41, 0.1);
}

.border-t-black-10{
  border-top-color: rgba(33, 37, 41, 0.1);
}

.border-r-black-10{
  border-right-color: rgba(33, 37, 41, 0.1);
}

.border-b-black-10{
  border-bottom-color: rgba(33, 37, 41, 0.1);
}

.border-l-black-10{
  border-left-color: rgba(33, 37, 41, 0.1);
}

.border-grey-darkest-10{
  border-color: rgba(154, 165, 192, 0.1);
}

.border-t-grey-darkest-10{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.border-r-grey-darkest-10{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.border-b-grey-darkest-10{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.border-l-grey-darkest-10{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.border-grey-darker-10{
  border-color: rgba(154, 165, 192, 0.1);
}

.border-t-grey-darker-10{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.border-r-grey-darker-10{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.border-b-grey-darker-10{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.border-l-grey-darker-10{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.border-grey-dark-10{
  border-color: rgba(66, 80, 92, 0.1);
}

.border-t-grey-dark-10{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.border-r-grey-dark-10{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.border-b-grey-dark-10{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.border-l-grey-dark-10{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.border-grey-10{
  border-color: rgba(121, 130, 139, 0.1);
}

.border-t-grey-10{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.border-r-grey-10{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.border-b-grey-10{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.border-l-grey-10{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.border-grey-light-10{
  border-color: rgba(179, 188, 197, 0.1);
}

.border-t-grey-light-10{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.border-r-grey-light-10{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.border-b-grey-light-10{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.border-l-grey-light-10{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.border-grey-lighter-10{
  border-color: rgba(222, 228, 233, 0.1);
}

.border-t-grey-lighter-10{
  border-top-color: rgba(222, 228, 233, 0.1);
}

.border-r-grey-lighter-10{
  border-right-color: rgba(222, 228, 233, 0.1);
}

.border-b-grey-lighter-10{
  border-bottom-color: rgba(222, 228, 233, 0.1);
}

.border-l-grey-lighter-10{
  border-left-color: rgba(222, 228, 233, 0.1);
}

.border-grey-lightest-10{
  border-color: rgba(244, 246, 249, 0.1);
}

.border-t-grey-lightest-10{
  border-top-color: rgba(244, 246, 249, 0.1);
}

.border-r-grey-lightest-10{
  border-right-color: rgba(244, 246, 249, 0.1);
}

.border-b-grey-lightest-10{
  border-bottom-color: rgba(244, 246, 249, 0.1);
}

.border-l-grey-lightest-10{
  border-left-color: rgba(244, 246, 249, 0.1);
}

.border-white-10{
  border-color: rgba(255, 255, 255, 0.1);
}

.border-t-white-10{
  border-top-color: rgba(255, 255, 255, 0.1);
}

.border-r-white-10{
  border-right-color: rgba(255, 255, 255, 0.1);
}

.border-b-white-10{
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.border-l-white-10{
  border-left-color: rgba(255, 255, 255, 0.1);
}

.border-red-10{
  border-color: rgba(211, 26, 8, 0.1);
}

.border-t-red-10{
  border-top-color: rgba(211, 26, 8, 0.1);
}

.border-r-red-10{
  border-right-color: rgba(211, 26, 8, 0.1);
}

.border-b-red-10{
  border-bottom-color: rgba(211, 26, 8, 0.1);
}

.border-l-red-10{
  border-left-color: rgba(211, 26, 8, 0.1);
}

.border-green-10{
  border-color: rgba(102, 187, 8, 0.1);
}

.border-t-green-10{
  border-top-color: rgba(102, 187, 8, 0.1);
}

.border-r-green-10{
  border-right-color: rgba(102, 187, 8, 0.1);
}

.border-b-green-10{
  border-bottom-color: rgba(102, 187, 8, 0.1);
}

.border-l-green-10{
  border-left-color: rgba(102, 187, 8, 0.1);
}

.border-blue-10{
  border-color: rgba(31, 168, 226, 0.1);
}

.border-t-blue-10{
  border-top-color: rgba(31, 168, 226, 0.1);
}

.border-r-blue-10{
  border-right-color: rgba(31, 168, 226, 0.1);
}

.border-b-blue-10{
  border-bottom-color: rgba(31, 168, 226, 0.1);
}

.border-l-blue-10{
  border-left-color: rgba(31, 168, 226, 0.1);
}

.border-orange-10{
  border-color: rgba(247, 148, 14, 0.1);
}

.border-t-orange-10{
  border-top-color: rgba(247, 148, 14, 0.1);
}

.border-r-orange-10{
  border-right-color: rgba(247, 148, 14, 0.1);
}

.border-b-orange-10{
  border-bottom-color: rgba(247, 148, 14, 0.1);
}

.border-l-orange-10{
  border-left-color: rgba(247, 148, 14, 0.1);
}

.border-primary-darkest-10{
  border-color: rgba(83, 15, 18, 0.1);
}

.border-t-primary-darkest-10{
  border-top-color: rgba(83, 15, 18, 0.1);
}

.border-r-primary-darkest-10{
  border-right-color: rgba(83, 15, 18, 0.1);
}

.border-b-primary-darkest-10{
  border-bottom-color: rgba(83, 15, 18, 0.1);
}

.border-l-primary-darkest-10{
  border-left-color: rgba(83, 15, 18, 0.1);
}

.border-primary-darker-10{
  border-color: rgba(124, 23, 27, 0.1);
}

.border-t-primary-darker-10{
  border-top-color: rgba(124, 23, 27, 0.1);
}

.border-r-primary-darker-10{
  border-right-color: rgba(124, 23, 27, 0.1);
}

.border-b-primary-darker-10{
  border-bottom-color: rgba(124, 23, 27, 0.1);
}

.border-l-primary-darker-10{
  border-left-color: rgba(124, 23, 27, 0.1);
}

.border-primary-dark-10{
  border-color: rgba(166, 30, 36, 0.1);
}

.border-t-primary-dark-10{
  border-top-color: rgba(166, 30, 36, 0.1);
}

.border-r-primary-dark-10{
  border-right-color: rgba(166, 30, 36, 0.1);
}

.border-b-primary-dark-10{
  border-bottom-color: rgba(166, 30, 36, 0.1);
}

.border-l-primary-dark-10{
  border-left-color: rgba(166, 30, 36, 0.1);
}

.border-primary-10{
  border-color: rgba(207, 38, 45, 0.1);
}

.border-t-primary-10{
  border-top-color: rgba(207, 38, 45, 0.1);
}

.border-r-primary-10{
  border-right-color: rgba(207, 38, 45, 0.1);
}

.border-b-primary-10{
  border-bottom-color: rgba(207, 38, 45, 0.1);
}

.border-l-primary-10{
  border-left-color: rgba(207, 38, 45, 0.1);
}

.border-primary-light-10{
  border-color: rgba(217, 81, 87, 0.1);
}

.border-t-primary-light-10{
  border-top-color: rgba(217, 81, 87, 0.1);
}

.border-r-primary-light-10{
  border-right-color: rgba(217, 81, 87, 0.1);
}

.border-b-primary-light-10{
  border-bottom-color: rgba(217, 81, 87, 0.1);
}

.border-l-primary-light-10{
  border-left-color: rgba(217, 81, 87, 0.1);
}

.border-primary-lighter-10{
  border-color: rgba(226, 125, 129, 0.1);
}

.border-t-primary-lighter-10{
  border-top-color: rgba(226, 125, 129, 0.1);
}

.border-r-primary-lighter-10{
  border-right-color: rgba(226, 125, 129, 0.1);
}

.border-b-primary-lighter-10{
  border-bottom-color: rgba(226, 125, 129, 0.1);
}

.border-l-primary-lighter-10{
  border-left-color: rgba(226, 125, 129, 0.1);
}

.border-primary-lightest-10{
  border-color: rgba(236, 168, 171, 0.1);
}

.border-t-primary-lightest-10{
  border-top-color: rgba(236, 168, 171, 0.1);
}

.border-r-primary-lightest-10{
  border-right-color: rgba(236, 168, 171, 0.1);
}

.border-b-primary-lightest-10{
  border-bottom-color: rgba(236, 168, 171, 0.1);
}

.border-l-primary-lightest-10{
  border-left-color: rgba(236, 168, 171, 0.1);
}

.border-secondary-darkest-10{
  border-color: rgba(62, 69, 37, 0.1);
}

.border-t-secondary-darkest-10{
  border-top-color: rgba(62, 69, 37, 0.1);
}

.border-r-secondary-darkest-10{
  border-right-color: rgba(62, 69, 37, 0.1);
}

.border-b-secondary-darkest-10{
  border-bottom-color: rgba(62, 69, 37, 0.1);
}

.border-l-secondary-darkest-10{
  border-left-color: rgba(62, 69, 37, 0.1);
}

.border-secondary-darker-10{
  border-color: rgba(94, 104, 55, 0.1);
}

.border-t-secondary-darker-10{
  border-top-color: rgba(94, 104, 55, 0.1);
}

.border-r-secondary-darker-10{
  border-right-color: rgba(94, 104, 55, 0.1);
}

.border-b-secondary-darker-10{
  border-bottom-color: rgba(94, 104, 55, 0.1);
}

.border-l-secondary-darker-10{
  border-left-color: rgba(94, 104, 55, 0.1);
}

.border-secondary-dark-10{
  border-color: rgba(125, 138, 74, 0.1);
}

.border-t-secondary-dark-10{
  border-top-color: rgba(125, 138, 74, 0.1);
}

.border-r-secondary-dark-10{
  border-right-color: rgba(125, 138, 74, 0.1);
}

.border-b-secondary-dark-10{
  border-bottom-color: rgba(125, 138, 74, 0.1);
}

.border-l-secondary-dark-10{
  border-left-color: rgba(125, 138, 74, 0.1);
}

.border-secondary-10{
  border-color: rgba(156, 173, 92, 0.1);
}

.border-t-secondary-10{
  border-top-color: rgba(156, 173, 92, 0.1);
}

.border-r-secondary-10{
  border-right-color: rgba(156, 173, 92, 0.1);
}

.border-b-secondary-10{
  border-bottom-color: rgba(156, 173, 92, 0.1);
}

.border-l-secondary-10{
  border-left-color: rgba(156, 173, 92, 0.1);
}

.border-secondary-light-10{
  border-color: rgba(176, 189, 125, 0.1);
}

.border-t-secondary-light-10{
  border-top-color: rgba(176, 189, 125, 0.1);
}

.border-r-secondary-light-10{
  border-right-color: rgba(176, 189, 125, 0.1);
}

.border-b-secondary-light-10{
  border-bottom-color: rgba(176, 189, 125, 0.1);
}

.border-l-secondary-light-10{
  border-left-color: rgba(176, 189, 125, 0.1);
}

.border-secondary-lighter-10{
  border-color: rgba(196, 206, 157, 0.1);
}

.border-t-secondary-lighter-10{
  border-top-color: rgba(196, 206, 157, 0.1);
}

.border-r-secondary-lighter-10{
  border-right-color: rgba(196, 206, 157, 0.1);
}

.border-b-secondary-lighter-10{
  border-bottom-color: rgba(196, 206, 157, 0.1);
}

.border-l-secondary-lighter-10{
  border-left-color: rgba(196, 206, 157, 0.1);
}

.border-secondary-lightest-10{
  border-color: rgba(215, 222, 190, 0.1);
}

.border-t-secondary-lightest-10{
  border-top-color: rgba(215, 222, 190, 0.1);
}

.border-r-secondary-lightest-10{
  border-right-color: rgba(215, 222, 190, 0.1);
}

.border-b-secondary-lightest-10{
  border-bottom-color: rgba(215, 222, 190, 0.1);
}

.border-l-secondary-lightest-10{
  border-left-color: rgba(215, 222, 190, 0.1);
}

.border-tertiary-darkest-10{
  border-color: rgba(15, 47, 33, 0.1);
}

.border-t-tertiary-darkest-10{
  border-top-color: rgba(15, 47, 33, 0.1);
}

.border-r-tertiary-darkest-10{
  border-right-color: rgba(15, 47, 33, 0.1);
}

.border-b-tertiary-darkest-10{
  border-bottom-color: rgba(15, 47, 33, 0.1);
}

.border-l-tertiary-darkest-10{
  border-left-color: rgba(15, 47, 33, 0.1);
}

.border-tertiary-darker-10{
  border-color: rgba(26, 71, 49, 0.1);
}

.border-t-tertiary-darker-10{
  border-top-color: rgba(26, 71, 49, 0.1);
}

.border-r-tertiary-darker-10{
  border-right-color: rgba(26, 71, 49, 0.1);
}

.border-b-tertiary-darker-10{
  border-bottom-color: rgba(26, 71, 49, 0.1);
}

.border-l-tertiary-darker-10{
  border-left-color: rgba(26, 71, 49, 0.1);
}

.border-tertiary-dark-10{
  border-color: rgba(31, 157, 85, 0.1);
}

.border-t-tertiary-dark-10{
  border-top-color: rgba(31, 157, 85, 0.1);
}

.border-r-tertiary-dark-10{
  border-right-color: rgba(31, 157, 85, 0.1);
}

.border-b-tertiary-dark-10{
  border-bottom-color: rgba(31, 157, 85, 0.1);
}

.border-l-tertiary-dark-10{
  border-left-color: rgba(31, 157, 85, 0.1);
}

.border-tertiary-10{
  border-color: rgba(255, 197, 0, 0.1);
}

.border-t-tertiary-10{
  border-top-color: rgba(255, 197, 0, 0.1);
}

.border-r-tertiary-10{
  border-right-color: rgba(255, 197, 0, 0.1);
}

.border-b-tertiary-10{
  border-bottom-color: rgba(255, 197, 0, 0.1);
}

.border-l-tertiary-10{
  border-left-color: rgba(255, 197, 0, 0.1);
}

.border-tertiary-light-10{
  border-color: rgba(81, 216, 138, 0.1);
}

.border-t-tertiary-light-10{
  border-top-color: rgba(81, 216, 138, 0.1);
}

.border-r-tertiary-light-10{
  border-right-color: rgba(81, 216, 138, 0.1);
}

.border-b-tertiary-light-10{
  border-bottom-color: rgba(81, 216, 138, 0.1);
}

.border-l-tertiary-light-10{
  border-left-color: rgba(81, 216, 138, 0.1);
}

.border-tertiary-lighter-10{
  border-color: rgba(162, 245, 191, 0.1);
}

.border-t-tertiary-lighter-10{
  border-top-color: rgba(162, 245, 191, 0.1);
}

.border-r-tertiary-lighter-10{
  border-right-color: rgba(162, 245, 191, 0.1);
}

.border-b-tertiary-lighter-10{
  border-bottom-color: rgba(162, 245, 191, 0.1);
}

.border-l-tertiary-lighter-10{
  border-left-color: rgba(162, 245, 191, 0.1);
}

.border-tertiary-lightest-10{
  border-color: rgba(227, 252, 236, 0.1);
}

.border-t-tertiary-lightest-10{
  border-top-color: rgba(227, 252, 236, 0.1);
}

.border-r-tertiary-lightest-10{
  border-right-color: rgba(227, 252, 236, 0.1);
}

.border-b-tertiary-lightest-10{
  border-bottom-color: rgba(227, 252, 236, 0.1);
}

.border-l-tertiary-lightest-10{
  border-left-color: rgba(227, 252, 236, 0.1);
}

.border-default-10{
  border-color: rgba(179, 188, 197, 0.1);
}

.border-t-default-10{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.border-r-default-10{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.border-b-default-10{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.border-l-default-10{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-border-10:hover{
  border-color: rgba(230, 235, 245, 0.1);
}

.hover\:border-t-border-10:hover{
  border-top-color: rgba(230, 235, 245, 0.1);
}

.hover\:border-r-border-10:hover{
  border-right-color: rgba(230, 235, 245, 0.1);
}

.hover\:border-b-border-10:hover{
  border-bottom-color: rgba(230, 235, 245, 0.1);
}

.hover\:border-l-border-10:hover{
  border-left-color: rgba(230, 235, 245, 0.1);
}

.hover\:border-form-10:hover{
  border-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-t-form-10:hover{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-r-form-10:hover{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-b-form-10:hover{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-l-form-10:hover{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-form-active-10:hover{
  border-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-t-form-active-10:hover{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-r-form-active-10:hover{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-b-form-active-10:hover{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-l-form-active-10:hover{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-black-10:hover{
  border-color: rgba(33, 37, 41, 0.1);
}

.hover\:border-t-black-10:hover{
  border-top-color: rgba(33, 37, 41, 0.1);
}

.hover\:border-r-black-10:hover{
  border-right-color: rgba(33, 37, 41, 0.1);
}

.hover\:border-b-black-10:hover{
  border-bottom-color: rgba(33, 37, 41, 0.1);
}

.hover\:border-l-black-10:hover{
  border-left-color: rgba(33, 37, 41, 0.1);
}

.hover\:border-grey-darkest-10:hover{
  border-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-t-grey-darkest-10:hover{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-r-grey-darkest-10:hover{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-b-grey-darkest-10:hover{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-l-grey-darkest-10:hover{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-grey-darker-10:hover{
  border-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-t-grey-darker-10:hover{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-r-grey-darker-10:hover{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-b-grey-darker-10:hover{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-l-grey-darker-10:hover{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.hover\:border-grey-dark-10:hover{
  border-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-t-grey-dark-10:hover{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-r-grey-dark-10:hover{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-b-grey-dark-10:hover{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-l-grey-dark-10:hover{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.hover\:border-grey-10:hover{
  border-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-t-grey-10:hover{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-r-grey-10:hover{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-b-grey-10:hover{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-l-grey-10:hover{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.hover\:border-grey-light-10:hover{
  border-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-t-grey-light-10:hover{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-r-grey-light-10:hover{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-b-grey-light-10:hover{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-l-grey-light-10:hover{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-grey-lighter-10:hover{
  border-color: rgba(222, 228, 233, 0.1);
}

.hover\:border-t-grey-lighter-10:hover{
  border-top-color: rgba(222, 228, 233, 0.1);
}

.hover\:border-r-grey-lighter-10:hover{
  border-right-color: rgba(222, 228, 233, 0.1);
}

.hover\:border-b-grey-lighter-10:hover{
  border-bottom-color: rgba(222, 228, 233, 0.1);
}

.hover\:border-l-grey-lighter-10:hover{
  border-left-color: rgba(222, 228, 233, 0.1);
}

.hover\:border-grey-lightest-10:hover{
  border-color: rgba(244, 246, 249, 0.1);
}

.hover\:border-t-grey-lightest-10:hover{
  border-top-color: rgba(244, 246, 249, 0.1);
}

.hover\:border-r-grey-lightest-10:hover{
  border-right-color: rgba(244, 246, 249, 0.1);
}

.hover\:border-b-grey-lightest-10:hover{
  border-bottom-color: rgba(244, 246, 249, 0.1);
}

.hover\:border-l-grey-lightest-10:hover{
  border-left-color: rgba(244, 246, 249, 0.1);
}

.hover\:border-white-10:hover{
  border-color: rgba(255, 255, 255, 0.1);
}

.hover\:border-t-white-10:hover{
  border-top-color: rgba(255, 255, 255, 0.1);
}

.hover\:border-r-white-10:hover{
  border-right-color: rgba(255, 255, 255, 0.1);
}

.hover\:border-b-white-10:hover{
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hover\:border-l-white-10:hover{
  border-left-color: rgba(255, 255, 255, 0.1);
}

.hover\:border-red-10:hover{
  border-color: rgba(211, 26, 8, 0.1);
}

.hover\:border-t-red-10:hover{
  border-top-color: rgba(211, 26, 8, 0.1);
}

.hover\:border-r-red-10:hover{
  border-right-color: rgba(211, 26, 8, 0.1);
}

.hover\:border-b-red-10:hover{
  border-bottom-color: rgba(211, 26, 8, 0.1);
}

.hover\:border-l-red-10:hover{
  border-left-color: rgba(211, 26, 8, 0.1);
}

.hover\:border-green-10:hover{
  border-color: rgba(102, 187, 8, 0.1);
}

.hover\:border-t-green-10:hover{
  border-top-color: rgba(102, 187, 8, 0.1);
}

.hover\:border-r-green-10:hover{
  border-right-color: rgba(102, 187, 8, 0.1);
}

.hover\:border-b-green-10:hover{
  border-bottom-color: rgba(102, 187, 8, 0.1);
}

.hover\:border-l-green-10:hover{
  border-left-color: rgba(102, 187, 8, 0.1);
}

.hover\:border-blue-10:hover{
  border-color: rgba(31, 168, 226, 0.1);
}

.hover\:border-t-blue-10:hover{
  border-top-color: rgba(31, 168, 226, 0.1);
}

.hover\:border-r-blue-10:hover{
  border-right-color: rgba(31, 168, 226, 0.1);
}

.hover\:border-b-blue-10:hover{
  border-bottom-color: rgba(31, 168, 226, 0.1);
}

.hover\:border-l-blue-10:hover{
  border-left-color: rgba(31, 168, 226, 0.1);
}

.hover\:border-orange-10:hover{
  border-color: rgba(247, 148, 14, 0.1);
}

.hover\:border-t-orange-10:hover{
  border-top-color: rgba(247, 148, 14, 0.1);
}

.hover\:border-r-orange-10:hover{
  border-right-color: rgba(247, 148, 14, 0.1);
}

.hover\:border-b-orange-10:hover{
  border-bottom-color: rgba(247, 148, 14, 0.1);
}

.hover\:border-l-orange-10:hover{
  border-left-color: rgba(247, 148, 14, 0.1);
}

.hover\:border-primary-darkest-10:hover{
  border-color: rgba(83, 15, 18, 0.1);
}

.hover\:border-t-primary-darkest-10:hover{
  border-top-color: rgba(83, 15, 18, 0.1);
}

.hover\:border-r-primary-darkest-10:hover{
  border-right-color: rgba(83, 15, 18, 0.1);
}

.hover\:border-b-primary-darkest-10:hover{
  border-bottom-color: rgba(83, 15, 18, 0.1);
}

.hover\:border-l-primary-darkest-10:hover{
  border-left-color: rgba(83, 15, 18, 0.1);
}

.hover\:border-primary-darker-10:hover{
  border-color: rgba(124, 23, 27, 0.1);
}

.hover\:border-t-primary-darker-10:hover{
  border-top-color: rgba(124, 23, 27, 0.1);
}

.hover\:border-r-primary-darker-10:hover{
  border-right-color: rgba(124, 23, 27, 0.1);
}

.hover\:border-b-primary-darker-10:hover{
  border-bottom-color: rgba(124, 23, 27, 0.1);
}

.hover\:border-l-primary-darker-10:hover{
  border-left-color: rgba(124, 23, 27, 0.1);
}

.hover\:border-primary-dark-10:hover{
  border-color: rgba(166, 30, 36, 0.1);
}

.hover\:border-t-primary-dark-10:hover{
  border-top-color: rgba(166, 30, 36, 0.1);
}

.hover\:border-r-primary-dark-10:hover{
  border-right-color: rgba(166, 30, 36, 0.1);
}

.hover\:border-b-primary-dark-10:hover{
  border-bottom-color: rgba(166, 30, 36, 0.1);
}

.hover\:border-l-primary-dark-10:hover{
  border-left-color: rgba(166, 30, 36, 0.1);
}

.hover\:border-primary-10:hover{
  border-color: rgba(207, 38, 45, 0.1);
}

.hover\:border-t-primary-10:hover{
  border-top-color: rgba(207, 38, 45, 0.1);
}

.hover\:border-r-primary-10:hover{
  border-right-color: rgba(207, 38, 45, 0.1);
}

.hover\:border-b-primary-10:hover{
  border-bottom-color: rgba(207, 38, 45, 0.1);
}

.hover\:border-l-primary-10:hover{
  border-left-color: rgba(207, 38, 45, 0.1);
}

.hover\:border-primary-light-10:hover{
  border-color: rgba(217, 81, 87, 0.1);
}

.hover\:border-t-primary-light-10:hover{
  border-top-color: rgba(217, 81, 87, 0.1);
}

.hover\:border-r-primary-light-10:hover{
  border-right-color: rgba(217, 81, 87, 0.1);
}

.hover\:border-b-primary-light-10:hover{
  border-bottom-color: rgba(217, 81, 87, 0.1);
}

.hover\:border-l-primary-light-10:hover{
  border-left-color: rgba(217, 81, 87, 0.1);
}

.hover\:border-primary-lighter-10:hover{
  border-color: rgba(226, 125, 129, 0.1);
}

.hover\:border-t-primary-lighter-10:hover{
  border-top-color: rgba(226, 125, 129, 0.1);
}

.hover\:border-r-primary-lighter-10:hover{
  border-right-color: rgba(226, 125, 129, 0.1);
}

.hover\:border-b-primary-lighter-10:hover{
  border-bottom-color: rgba(226, 125, 129, 0.1);
}

.hover\:border-l-primary-lighter-10:hover{
  border-left-color: rgba(226, 125, 129, 0.1);
}

.hover\:border-primary-lightest-10:hover{
  border-color: rgba(236, 168, 171, 0.1);
}

.hover\:border-t-primary-lightest-10:hover{
  border-top-color: rgba(236, 168, 171, 0.1);
}

.hover\:border-r-primary-lightest-10:hover{
  border-right-color: rgba(236, 168, 171, 0.1);
}

.hover\:border-b-primary-lightest-10:hover{
  border-bottom-color: rgba(236, 168, 171, 0.1);
}

.hover\:border-l-primary-lightest-10:hover{
  border-left-color: rgba(236, 168, 171, 0.1);
}

.hover\:border-secondary-darkest-10:hover{
  border-color: rgba(62, 69, 37, 0.1);
}

.hover\:border-t-secondary-darkest-10:hover{
  border-top-color: rgba(62, 69, 37, 0.1);
}

.hover\:border-r-secondary-darkest-10:hover{
  border-right-color: rgba(62, 69, 37, 0.1);
}

.hover\:border-b-secondary-darkest-10:hover{
  border-bottom-color: rgba(62, 69, 37, 0.1);
}

.hover\:border-l-secondary-darkest-10:hover{
  border-left-color: rgba(62, 69, 37, 0.1);
}

.hover\:border-secondary-darker-10:hover{
  border-color: rgba(94, 104, 55, 0.1);
}

.hover\:border-t-secondary-darker-10:hover{
  border-top-color: rgba(94, 104, 55, 0.1);
}

.hover\:border-r-secondary-darker-10:hover{
  border-right-color: rgba(94, 104, 55, 0.1);
}

.hover\:border-b-secondary-darker-10:hover{
  border-bottom-color: rgba(94, 104, 55, 0.1);
}

.hover\:border-l-secondary-darker-10:hover{
  border-left-color: rgba(94, 104, 55, 0.1);
}

.hover\:border-secondary-dark-10:hover{
  border-color: rgba(125, 138, 74, 0.1);
}

.hover\:border-t-secondary-dark-10:hover{
  border-top-color: rgba(125, 138, 74, 0.1);
}

.hover\:border-r-secondary-dark-10:hover{
  border-right-color: rgba(125, 138, 74, 0.1);
}

.hover\:border-b-secondary-dark-10:hover{
  border-bottom-color: rgba(125, 138, 74, 0.1);
}

.hover\:border-l-secondary-dark-10:hover{
  border-left-color: rgba(125, 138, 74, 0.1);
}

.hover\:border-secondary-10:hover{
  border-color: rgba(156, 173, 92, 0.1);
}

.hover\:border-t-secondary-10:hover{
  border-top-color: rgba(156, 173, 92, 0.1);
}

.hover\:border-r-secondary-10:hover{
  border-right-color: rgba(156, 173, 92, 0.1);
}

.hover\:border-b-secondary-10:hover{
  border-bottom-color: rgba(156, 173, 92, 0.1);
}

.hover\:border-l-secondary-10:hover{
  border-left-color: rgba(156, 173, 92, 0.1);
}

.hover\:border-secondary-light-10:hover{
  border-color: rgba(176, 189, 125, 0.1);
}

.hover\:border-t-secondary-light-10:hover{
  border-top-color: rgba(176, 189, 125, 0.1);
}

.hover\:border-r-secondary-light-10:hover{
  border-right-color: rgba(176, 189, 125, 0.1);
}

.hover\:border-b-secondary-light-10:hover{
  border-bottom-color: rgba(176, 189, 125, 0.1);
}

.hover\:border-l-secondary-light-10:hover{
  border-left-color: rgba(176, 189, 125, 0.1);
}

.hover\:border-secondary-lighter-10:hover{
  border-color: rgba(196, 206, 157, 0.1);
}

.hover\:border-t-secondary-lighter-10:hover{
  border-top-color: rgba(196, 206, 157, 0.1);
}

.hover\:border-r-secondary-lighter-10:hover{
  border-right-color: rgba(196, 206, 157, 0.1);
}

.hover\:border-b-secondary-lighter-10:hover{
  border-bottom-color: rgba(196, 206, 157, 0.1);
}

.hover\:border-l-secondary-lighter-10:hover{
  border-left-color: rgba(196, 206, 157, 0.1);
}

.hover\:border-secondary-lightest-10:hover{
  border-color: rgba(215, 222, 190, 0.1);
}

.hover\:border-t-secondary-lightest-10:hover{
  border-top-color: rgba(215, 222, 190, 0.1);
}

.hover\:border-r-secondary-lightest-10:hover{
  border-right-color: rgba(215, 222, 190, 0.1);
}

.hover\:border-b-secondary-lightest-10:hover{
  border-bottom-color: rgba(215, 222, 190, 0.1);
}

.hover\:border-l-secondary-lightest-10:hover{
  border-left-color: rgba(215, 222, 190, 0.1);
}

.hover\:border-tertiary-darkest-10:hover{
  border-color: rgba(15, 47, 33, 0.1);
}

.hover\:border-t-tertiary-darkest-10:hover{
  border-top-color: rgba(15, 47, 33, 0.1);
}

.hover\:border-r-tertiary-darkest-10:hover{
  border-right-color: rgba(15, 47, 33, 0.1);
}

.hover\:border-b-tertiary-darkest-10:hover{
  border-bottom-color: rgba(15, 47, 33, 0.1);
}

.hover\:border-l-tertiary-darkest-10:hover{
  border-left-color: rgba(15, 47, 33, 0.1);
}

.hover\:border-tertiary-darker-10:hover{
  border-color: rgba(26, 71, 49, 0.1);
}

.hover\:border-t-tertiary-darker-10:hover{
  border-top-color: rgba(26, 71, 49, 0.1);
}

.hover\:border-r-tertiary-darker-10:hover{
  border-right-color: rgba(26, 71, 49, 0.1);
}

.hover\:border-b-tertiary-darker-10:hover{
  border-bottom-color: rgba(26, 71, 49, 0.1);
}

.hover\:border-l-tertiary-darker-10:hover{
  border-left-color: rgba(26, 71, 49, 0.1);
}

.hover\:border-tertiary-dark-10:hover{
  border-color: rgba(31, 157, 85, 0.1);
}

.hover\:border-t-tertiary-dark-10:hover{
  border-top-color: rgba(31, 157, 85, 0.1);
}

.hover\:border-r-tertiary-dark-10:hover{
  border-right-color: rgba(31, 157, 85, 0.1);
}

.hover\:border-b-tertiary-dark-10:hover{
  border-bottom-color: rgba(31, 157, 85, 0.1);
}

.hover\:border-l-tertiary-dark-10:hover{
  border-left-color: rgba(31, 157, 85, 0.1);
}

.hover\:border-tertiary-10:hover{
  border-color: rgba(255, 197, 0, 0.1);
}

.hover\:border-t-tertiary-10:hover{
  border-top-color: rgba(255, 197, 0, 0.1);
}

.hover\:border-r-tertiary-10:hover{
  border-right-color: rgba(255, 197, 0, 0.1);
}

.hover\:border-b-tertiary-10:hover{
  border-bottom-color: rgba(255, 197, 0, 0.1);
}

.hover\:border-l-tertiary-10:hover{
  border-left-color: rgba(255, 197, 0, 0.1);
}

.hover\:border-tertiary-light-10:hover{
  border-color: rgba(81, 216, 138, 0.1);
}

.hover\:border-t-tertiary-light-10:hover{
  border-top-color: rgba(81, 216, 138, 0.1);
}

.hover\:border-r-tertiary-light-10:hover{
  border-right-color: rgba(81, 216, 138, 0.1);
}

.hover\:border-b-tertiary-light-10:hover{
  border-bottom-color: rgba(81, 216, 138, 0.1);
}

.hover\:border-l-tertiary-light-10:hover{
  border-left-color: rgba(81, 216, 138, 0.1);
}

.hover\:border-tertiary-lighter-10:hover{
  border-color: rgba(162, 245, 191, 0.1);
}

.hover\:border-t-tertiary-lighter-10:hover{
  border-top-color: rgba(162, 245, 191, 0.1);
}

.hover\:border-r-tertiary-lighter-10:hover{
  border-right-color: rgba(162, 245, 191, 0.1);
}

.hover\:border-b-tertiary-lighter-10:hover{
  border-bottom-color: rgba(162, 245, 191, 0.1);
}

.hover\:border-l-tertiary-lighter-10:hover{
  border-left-color: rgba(162, 245, 191, 0.1);
}

.hover\:border-tertiary-lightest-10:hover{
  border-color: rgba(227, 252, 236, 0.1);
}

.hover\:border-t-tertiary-lightest-10:hover{
  border-top-color: rgba(227, 252, 236, 0.1);
}

.hover\:border-r-tertiary-lightest-10:hover{
  border-right-color: rgba(227, 252, 236, 0.1);
}

.hover\:border-b-tertiary-lightest-10:hover{
  border-bottom-color: rgba(227, 252, 236, 0.1);
}

.hover\:border-l-tertiary-lightest-10:hover{
  border-left-color: rgba(227, 252, 236, 0.1);
}

.hover\:border-default-10:hover{
  border-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-t-default-10:hover{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-r-default-10:hover{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-b-default-10:hover{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.hover\:border-l-default-10:hover{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-border-10:focus{
  border-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-t-border-10:focus{
  border-top-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-r-border-10:focus{
  border-right-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-b-border-10:focus{
  border-bottom-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-l-border-10:focus{
  border-left-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-form-10:focus{
  border-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-t-form-10:focus{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-r-form-10:focus{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-b-form-10:focus{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-l-form-10:focus{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-form-active-10:focus{
  border-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-t-form-active-10:focus{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-r-form-active-10:focus{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-b-form-active-10:focus{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-l-form-active-10:focus{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-black-10:focus{
  border-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-t-black-10:focus{
  border-top-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-r-black-10:focus{
  border-right-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-b-black-10:focus{
  border-bottom-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-l-black-10:focus{
  border-left-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-grey-darkest-10:focus{
  border-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-t-grey-darkest-10:focus{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-r-grey-darkest-10:focus{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-b-grey-darkest-10:focus{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-l-grey-darkest-10:focus{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-grey-darker-10:focus{
  border-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-t-grey-darker-10:focus{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-r-grey-darker-10:focus{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-b-grey-darker-10:focus{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-l-grey-darker-10:focus{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-grey-dark-10:focus{
  border-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-t-grey-dark-10:focus{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-r-grey-dark-10:focus{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-b-grey-dark-10:focus{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-l-grey-dark-10:focus{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-grey-10:focus{
  border-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-t-grey-10:focus{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-r-grey-10:focus{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-b-grey-10:focus{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-l-grey-10:focus{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-grey-light-10:focus{
  border-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-t-grey-light-10:focus{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-r-grey-light-10:focus{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-b-grey-light-10:focus{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-l-grey-light-10:focus{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-grey-lighter-10:focus{
  border-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-t-grey-lighter-10:focus{
  border-top-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-r-grey-lighter-10:focus{
  border-right-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-b-grey-lighter-10:focus{
  border-bottom-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-l-grey-lighter-10:focus{
  border-left-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-grey-lightest-10:focus{
  border-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-t-grey-lightest-10:focus{
  border-top-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-r-grey-lightest-10:focus{
  border-right-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-b-grey-lightest-10:focus{
  border-bottom-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-l-grey-lightest-10:focus{
  border-left-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-white-10:focus{
  border-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-t-white-10:focus{
  border-top-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-r-white-10:focus{
  border-right-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-b-white-10:focus{
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-l-white-10:focus{
  border-left-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-red-10:focus{
  border-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-t-red-10:focus{
  border-top-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-r-red-10:focus{
  border-right-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-b-red-10:focus{
  border-bottom-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-l-red-10:focus{
  border-left-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-green-10:focus{
  border-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-t-green-10:focus{
  border-top-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-r-green-10:focus{
  border-right-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-b-green-10:focus{
  border-bottom-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-l-green-10:focus{
  border-left-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-blue-10:focus{
  border-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-t-blue-10:focus{
  border-top-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-r-blue-10:focus{
  border-right-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-b-blue-10:focus{
  border-bottom-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-l-blue-10:focus{
  border-left-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-orange-10:focus{
  border-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-t-orange-10:focus{
  border-top-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-r-orange-10:focus{
  border-right-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-b-orange-10:focus{
  border-bottom-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-l-orange-10:focus{
  border-left-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-primary-darkest-10:focus{
  border-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-t-primary-darkest-10:focus{
  border-top-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-r-primary-darkest-10:focus{
  border-right-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-b-primary-darkest-10:focus{
  border-bottom-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-l-primary-darkest-10:focus{
  border-left-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-primary-darker-10:focus{
  border-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-t-primary-darker-10:focus{
  border-top-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-r-primary-darker-10:focus{
  border-right-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-b-primary-darker-10:focus{
  border-bottom-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-l-primary-darker-10:focus{
  border-left-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-primary-dark-10:focus{
  border-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-t-primary-dark-10:focus{
  border-top-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-r-primary-dark-10:focus{
  border-right-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-b-primary-dark-10:focus{
  border-bottom-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-l-primary-dark-10:focus{
  border-left-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-primary-10:focus{
  border-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-t-primary-10:focus{
  border-top-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-r-primary-10:focus{
  border-right-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-b-primary-10:focus{
  border-bottom-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-l-primary-10:focus{
  border-left-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-primary-light-10:focus{
  border-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-t-primary-light-10:focus{
  border-top-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-r-primary-light-10:focus{
  border-right-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-b-primary-light-10:focus{
  border-bottom-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-l-primary-light-10:focus{
  border-left-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-primary-lighter-10:focus{
  border-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-t-primary-lighter-10:focus{
  border-top-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-r-primary-lighter-10:focus{
  border-right-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-b-primary-lighter-10:focus{
  border-bottom-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-l-primary-lighter-10:focus{
  border-left-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-primary-lightest-10:focus{
  border-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-t-primary-lightest-10:focus{
  border-top-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-r-primary-lightest-10:focus{
  border-right-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-b-primary-lightest-10:focus{
  border-bottom-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-l-primary-lightest-10:focus{
  border-left-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-secondary-darkest-10:focus{
  border-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-t-secondary-darkest-10:focus{
  border-top-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-r-secondary-darkest-10:focus{
  border-right-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-b-secondary-darkest-10:focus{
  border-bottom-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-l-secondary-darkest-10:focus{
  border-left-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-secondary-darker-10:focus{
  border-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-t-secondary-darker-10:focus{
  border-top-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-r-secondary-darker-10:focus{
  border-right-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-b-secondary-darker-10:focus{
  border-bottom-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-l-secondary-darker-10:focus{
  border-left-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-secondary-dark-10:focus{
  border-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-t-secondary-dark-10:focus{
  border-top-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-r-secondary-dark-10:focus{
  border-right-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-b-secondary-dark-10:focus{
  border-bottom-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-l-secondary-dark-10:focus{
  border-left-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-secondary-10:focus{
  border-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-t-secondary-10:focus{
  border-top-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-r-secondary-10:focus{
  border-right-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-b-secondary-10:focus{
  border-bottom-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-l-secondary-10:focus{
  border-left-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-secondary-light-10:focus{
  border-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-t-secondary-light-10:focus{
  border-top-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-r-secondary-light-10:focus{
  border-right-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-b-secondary-light-10:focus{
  border-bottom-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-l-secondary-light-10:focus{
  border-left-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-secondary-lighter-10:focus{
  border-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-t-secondary-lighter-10:focus{
  border-top-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-r-secondary-lighter-10:focus{
  border-right-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-b-secondary-lighter-10:focus{
  border-bottom-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-l-secondary-lighter-10:focus{
  border-left-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-secondary-lightest-10:focus{
  border-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-t-secondary-lightest-10:focus{
  border-top-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-r-secondary-lightest-10:focus{
  border-right-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-b-secondary-lightest-10:focus{
  border-bottom-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-l-secondary-lightest-10:focus{
  border-left-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-tertiary-darkest-10:focus{
  border-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-t-tertiary-darkest-10:focus{
  border-top-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-r-tertiary-darkest-10:focus{
  border-right-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-b-tertiary-darkest-10:focus{
  border-bottom-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-l-tertiary-darkest-10:focus{
  border-left-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-tertiary-darker-10:focus{
  border-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-t-tertiary-darker-10:focus{
  border-top-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-r-tertiary-darker-10:focus{
  border-right-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-b-tertiary-darker-10:focus{
  border-bottom-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-l-tertiary-darker-10:focus{
  border-left-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-tertiary-dark-10:focus{
  border-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-t-tertiary-dark-10:focus{
  border-top-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-r-tertiary-dark-10:focus{
  border-right-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-b-tertiary-dark-10:focus{
  border-bottom-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-l-tertiary-dark-10:focus{
  border-left-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-tertiary-10:focus{
  border-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-t-tertiary-10:focus{
  border-top-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-r-tertiary-10:focus{
  border-right-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-b-tertiary-10:focus{
  border-bottom-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-l-tertiary-10:focus{
  border-left-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-tertiary-light-10:focus{
  border-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-t-tertiary-light-10:focus{
  border-top-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-r-tertiary-light-10:focus{
  border-right-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-b-tertiary-light-10:focus{
  border-bottom-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-l-tertiary-light-10:focus{
  border-left-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-tertiary-lighter-10:focus{
  border-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-t-tertiary-lighter-10:focus{
  border-top-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-r-tertiary-lighter-10:focus{
  border-right-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-b-tertiary-lighter-10:focus{
  border-bottom-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-l-tertiary-lighter-10:focus{
  border-left-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-tertiary-lightest-10:focus{
  border-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-t-tertiary-lightest-10:focus{
  border-top-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-r-tertiary-lightest-10:focus{
  border-right-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-b-tertiary-lightest-10:focus{
  border-bottom-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-l-tertiary-lightest-10:focus{
  border-left-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-default-10:focus{
  border-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-t-default-10:focus{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-r-default-10:focus{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-b-default-10:focus{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-l-default-10:focus{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-border-10:focus{
  border-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-t-border-10:focus{
  border-top-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-r-border-10:focus{
  border-right-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-b-border-10:focus{
  border-bottom-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-l-border-10:focus{
  border-left-color: rgba(230, 235, 245, 0.1);
}

.focus\:border-form-10:focus{
  border-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-t-form-10:focus{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-r-form-10:focus{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-b-form-10:focus{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-l-form-10:focus{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-form-active-10:focus{
  border-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-t-form-active-10:focus{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-r-form-active-10:focus{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-b-form-active-10:focus{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-l-form-active-10:focus{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-black-10:focus{
  border-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-t-black-10:focus{
  border-top-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-r-black-10:focus{
  border-right-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-b-black-10:focus{
  border-bottom-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-l-black-10:focus{
  border-left-color: rgba(33, 37, 41, 0.1);
}

.focus\:border-grey-darkest-10:focus{
  border-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-t-grey-darkest-10:focus{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-r-grey-darkest-10:focus{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-b-grey-darkest-10:focus{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-l-grey-darkest-10:focus{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-grey-darker-10:focus{
  border-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-t-grey-darker-10:focus{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-r-grey-darker-10:focus{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-b-grey-darker-10:focus{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-l-grey-darker-10:focus{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.focus\:border-grey-dark-10:focus{
  border-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-t-grey-dark-10:focus{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-r-grey-dark-10:focus{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-b-grey-dark-10:focus{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-l-grey-dark-10:focus{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.focus\:border-grey-10:focus{
  border-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-t-grey-10:focus{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-r-grey-10:focus{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-b-grey-10:focus{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-l-grey-10:focus{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.focus\:border-grey-light-10:focus{
  border-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-t-grey-light-10:focus{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-r-grey-light-10:focus{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-b-grey-light-10:focus{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-l-grey-light-10:focus{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-grey-lighter-10:focus{
  border-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-t-grey-lighter-10:focus{
  border-top-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-r-grey-lighter-10:focus{
  border-right-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-b-grey-lighter-10:focus{
  border-bottom-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-l-grey-lighter-10:focus{
  border-left-color: rgba(222, 228, 233, 0.1);
}

.focus\:border-grey-lightest-10:focus{
  border-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-t-grey-lightest-10:focus{
  border-top-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-r-grey-lightest-10:focus{
  border-right-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-b-grey-lightest-10:focus{
  border-bottom-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-l-grey-lightest-10:focus{
  border-left-color: rgba(244, 246, 249, 0.1);
}

.focus\:border-white-10:focus{
  border-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-t-white-10:focus{
  border-top-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-r-white-10:focus{
  border-right-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-b-white-10:focus{
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-l-white-10:focus{
  border-left-color: rgba(255, 255, 255, 0.1);
}

.focus\:border-red-10:focus{
  border-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-t-red-10:focus{
  border-top-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-r-red-10:focus{
  border-right-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-b-red-10:focus{
  border-bottom-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-l-red-10:focus{
  border-left-color: rgba(211, 26, 8, 0.1);
}

.focus\:border-green-10:focus{
  border-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-t-green-10:focus{
  border-top-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-r-green-10:focus{
  border-right-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-b-green-10:focus{
  border-bottom-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-l-green-10:focus{
  border-left-color: rgba(102, 187, 8, 0.1);
}

.focus\:border-blue-10:focus{
  border-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-t-blue-10:focus{
  border-top-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-r-blue-10:focus{
  border-right-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-b-blue-10:focus{
  border-bottom-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-l-blue-10:focus{
  border-left-color: rgba(31, 168, 226, 0.1);
}

.focus\:border-orange-10:focus{
  border-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-t-orange-10:focus{
  border-top-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-r-orange-10:focus{
  border-right-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-b-orange-10:focus{
  border-bottom-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-l-orange-10:focus{
  border-left-color: rgba(247, 148, 14, 0.1);
}

.focus\:border-primary-darkest-10:focus{
  border-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-t-primary-darkest-10:focus{
  border-top-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-r-primary-darkest-10:focus{
  border-right-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-b-primary-darkest-10:focus{
  border-bottom-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-l-primary-darkest-10:focus{
  border-left-color: rgba(83, 15, 18, 0.1);
}

.focus\:border-primary-darker-10:focus{
  border-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-t-primary-darker-10:focus{
  border-top-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-r-primary-darker-10:focus{
  border-right-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-b-primary-darker-10:focus{
  border-bottom-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-l-primary-darker-10:focus{
  border-left-color: rgba(124, 23, 27, 0.1);
}

.focus\:border-primary-dark-10:focus{
  border-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-t-primary-dark-10:focus{
  border-top-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-r-primary-dark-10:focus{
  border-right-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-b-primary-dark-10:focus{
  border-bottom-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-l-primary-dark-10:focus{
  border-left-color: rgba(166, 30, 36, 0.1);
}

.focus\:border-primary-10:focus{
  border-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-t-primary-10:focus{
  border-top-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-r-primary-10:focus{
  border-right-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-b-primary-10:focus{
  border-bottom-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-l-primary-10:focus{
  border-left-color: rgba(207, 38, 45, 0.1);
}

.focus\:border-primary-light-10:focus{
  border-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-t-primary-light-10:focus{
  border-top-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-r-primary-light-10:focus{
  border-right-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-b-primary-light-10:focus{
  border-bottom-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-l-primary-light-10:focus{
  border-left-color: rgba(217, 81, 87, 0.1);
}

.focus\:border-primary-lighter-10:focus{
  border-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-t-primary-lighter-10:focus{
  border-top-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-r-primary-lighter-10:focus{
  border-right-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-b-primary-lighter-10:focus{
  border-bottom-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-l-primary-lighter-10:focus{
  border-left-color: rgba(226, 125, 129, 0.1);
}

.focus\:border-primary-lightest-10:focus{
  border-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-t-primary-lightest-10:focus{
  border-top-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-r-primary-lightest-10:focus{
  border-right-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-b-primary-lightest-10:focus{
  border-bottom-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-l-primary-lightest-10:focus{
  border-left-color: rgba(236, 168, 171, 0.1);
}

.focus\:border-secondary-darkest-10:focus{
  border-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-t-secondary-darkest-10:focus{
  border-top-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-r-secondary-darkest-10:focus{
  border-right-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-b-secondary-darkest-10:focus{
  border-bottom-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-l-secondary-darkest-10:focus{
  border-left-color: rgba(62, 69, 37, 0.1);
}

.focus\:border-secondary-darker-10:focus{
  border-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-t-secondary-darker-10:focus{
  border-top-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-r-secondary-darker-10:focus{
  border-right-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-b-secondary-darker-10:focus{
  border-bottom-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-l-secondary-darker-10:focus{
  border-left-color: rgba(94, 104, 55, 0.1);
}

.focus\:border-secondary-dark-10:focus{
  border-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-t-secondary-dark-10:focus{
  border-top-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-r-secondary-dark-10:focus{
  border-right-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-b-secondary-dark-10:focus{
  border-bottom-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-l-secondary-dark-10:focus{
  border-left-color: rgba(125, 138, 74, 0.1);
}

.focus\:border-secondary-10:focus{
  border-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-t-secondary-10:focus{
  border-top-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-r-secondary-10:focus{
  border-right-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-b-secondary-10:focus{
  border-bottom-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-l-secondary-10:focus{
  border-left-color: rgba(156, 173, 92, 0.1);
}

.focus\:border-secondary-light-10:focus{
  border-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-t-secondary-light-10:focus{
  border-top-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-r-secondary-light-10:focus{
  border-right-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-b-secondary-light-10:focus{
  border-bottom-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-l-secondary-light-10:focus{
  border-left-color: rgba(176, 189, 125, 0.1);
}

.focus\:border-secondary-lighter-10:focus{
  border-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-t-secondary-lighter-10:focus{
  border-top-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-r-secondary-lighter-10:focus{
  border-right-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-b-secondary-lighter-10:focus{
  border-bottom-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-l-secondary-lighter-10:focus{
  border-left-color: rgba(196, 206, 157, 0.1);
}

.focus\:border-secondary-lightest-10:focus{
  border-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-t-secondary-lightest-10:focus{
  border-top-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-r-secondary-lightest-10:focus{
  border-right-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-b-secondary-lightest-10:focus{
  border-bottom-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-l-secondary-lightest-10:focus{
  border-left-color: rgba(215, 222, 190, 0.1);
}

.focus\:border-tertiary-darkest-10:focus{
  border-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-t-tertiary-darkest-10:focus{
  border-top-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-r-tertiary-darkest-10:focus{
  border-right-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-b-tertiary-darkest-10:focus{
  border-bottom-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-l-tertiary-darkest-10:focus{
  border-left-color: rgba(15, 47, 33, 0.1);
}

.focus\:border-tertiary-darker-10:focus{
  border-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-t-tertiary-darker-10:focus{
  border-top-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-r-tertiary-darker-10:focus{
  border-right-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-b-tertiary-darker-10:focus{
  border-bottom-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-l-tertiary-darker-10:focus{
  border-left-color: rgba(26, 71, 49, 0.1);
}

.focus\:border-tertiary-dark-10:focus{
  border-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-t-tertiary-dark-10:focus{
  border-top-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-r-tertiary-dark-10:focus{
  border-right-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-b-tertiary-dark-10:focus{
  border-bottom-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-l-tertiary-dark-10:focus{
  border-left-color: rgba(31, 157, 85, 0.1);
}

.focus\:border-tertiary-10:focus{
  border-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-t-tertiary-10:focus{
  border-top-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-r-tertiary-10:focus{
  border-right-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-b-tertiary-10:focus{
  border-bottom-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-l-tertiary-10:focus{
  border-left-color: rgba(255, 197, 0, 0.1);
}

.focus\:border-tertiary-light-10:focus{
  border-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-t-tertiary-light-10:focus{
  border-top-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-r-tertiary-light-10:focus{
  border-right-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-b-tertiary-light-10:focus{
  border-bottom-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-l-tertiary-light-10:focus{
  border-left-color: rgba(81, 216, 138, 0.1);
}

.focus\:border-tertiary-lighter-10:focus{
  border-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-t-tertiary-lighter-10:focus{
  border-top-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-r-tertiary-lighter-10:focus{
  border-right-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-b-tertiary-lighter-10:focus{
  border-bottom-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-l-tertiary-lighter-10:focus{
  border-left-color: rgba(162, 245, 191, 0.1);
}

.focus\:border-tertiary-lightest-10:focus{
  border-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-t-tertiary-lightest-10:focus{
  border-top-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-r-tertiary-lightest-10:focus{
  border-right-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-b-tertiary-lightest-10:focus{
  border-bottom-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-l-tertiary-lightest-10:focus{
  border-left-color: rgba(227, 252, 236, 0.1);
}

.focus\:border-default-10:focus{
  border-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-t-default-10:focus{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-r-default-10:focus{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-b-default-10:focus{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.focus\:border-l-default-10:focus{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-border-10{
  border-color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:border-t-border-10{
  border-top-color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:border-r-border-10{
  border-right-color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:border-b-border-10{
  border-bottom-color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:border-l-border-10{
  border-left-color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:border-form-10{
  border-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-t-form-10{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-r-form-10{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-b-form-10{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-l-form-10{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-form-active-10{
  border-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-t-form-active-10{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-r-form-active-10{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-b-form-active-10{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-l-form-active-10{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-black-10{
  border-color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:border-t-black-10{
  border-top-color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:border-r-black-10{
  border-right-color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:border-b-black-10{
  border-bottom-color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:border-l-black-10{
  border-left-color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:border-grey-darkest-10{
  border-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-t-grey-darkest-10{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-r-grey-darkest-10{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-b-grey-darkest-10{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-l-grey-darkest-10{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-grey-darker-10{
  border-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-t-grey-darker-10{
  border-top-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-r-grey-darker-10{
  border-right-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-b-grey-darker-10{
  border-bottom-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-l-grey-darker-10{
  border-left-color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:border-grey-dark-10{
  border-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-t-grey-dark-10{
  border-top-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-r-grey-dark-10{
  border-right-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-b-grey-dark-10{
  border-bottom-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-l-grey-dark-10{
  border-left-color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:border-grey-10{
  border-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-t-grey-10{
  border-top-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-r-grey-10{
  border-right-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-b-grey-10{
  border-bottom-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-l-grey-10{
  border-left-color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:border-grey-light-10{
  border-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-t-grey-light-10{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-r-grey-light-10{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-b-grey-light-10{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-l-grey-light-10{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-grey-lighter-10{
  border-color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:border-t-grey-lighter-10{
  border-top-color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:border-r-grey-lighter-10{
  border-right-color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:border-b-grey-lighter-10{
  border-bottom-color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:border-l-grey-lighter-10{
  border-left-color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:border-grey-lightest-10{
  border-color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:border-t-grey-lightest-10{
  border-top-color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:border-r-grey-lightest-10{
  border-right-color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:border-b-grey-lightest-10{
  border-bottom-color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:border-l-grey-lightest-10{
  border-left-color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:border-white-10{
  border-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:border-t-white-10{
  border-top-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:border-r-white-10{
  border-right-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:border-b-white-10{
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:border-l-white-10{
  border-left-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:border-red-10{
  border-color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:border-t-red-10{
  border-top-color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:border-r-red-10{
  border-right-color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:border-b-red-10{
  border-bottom-color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:border-l-red-10{
  border-left-color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:border-green-10{
  border-color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:border-t-green-10{
  border-top-color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:border-r-green-10{
  border-right-color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:border-b-green-10{
  border-bottom-color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:border-l-green-10{
  border-left-color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:border-blue-10{
  border-color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:border-t-blue-10{
  border-top-color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:border-r-blue-10{
  border-right-color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:border-b-blue-10{
  border-bottom-color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:border-l-blue-10{
  border-left-color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:border-orange-10{
  border-color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:border-t-orange-10{
  border-top-color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:border-r-orange-10{
  border-right-color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:border-b-orange-10{
  border-bottom-color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:border-l-orange-10{
  border-left-color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:border-primary-darkest-10{
  border-color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:border-t-primary-darkest-10{
  border-top-color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:border-r-primary-darkest-10{
  border-right-color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:border-b-primary-darkest-10{
  border-bottom-color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:border-l-primary-darkest-10{
  border-left-color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:border-primary-darker-10{
  border-color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:border-t-primary-darker-10{
  border-top-color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:border-r-primary-darker-10{
  border-right-color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:border-b-primary-darker-10{
  border-bottom-color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:border-l-primary-darker-10{
  border-left-color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:border-primary-dark-10{
  border-color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:border-t-primary-dark-10{
  border-top-color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:border-r-primary-dark-10{
  border-right-color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:border-b-primary-dark-10{
  border-bottom-color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:border-l-primary-dark-10{
  border-left-color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:border-primary-10{
  border-color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:border-t-primary-10{
  border-top-color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:border-r-primary-10{
  border-right-color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:border-b-primary-10{
  border-bottom-color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:border-l-primary-10{
  border-left-color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:border-primary-light-10{
  border-color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:border-t-primary-light-10{
  border-top-color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:border-r-primary-light-10{
  border-right-color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:border-b-primary-light-10{
  border-bottom-color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:border-l-primary-light-10{
  border-left-color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:border-primary-lighter-10{
  border-color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:border-t-primary-lighter-10{
  border-top-color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:border-r-primary-lighter-10{
  border-right-color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:border-b-primary-lighter-10{
  border-bottom-color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:border-l-primary-lighter-10{
  border-left-color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:border-primary-lightest-10{
  border-color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:border-t-primary-lightest-10{
  border-top-color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:border-r-primary-lightest-10{
  border-right-color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:border-b-primary-lightest-10{
  border-bottom-color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:border-l-primary-lightest-10{
  border-left-color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:border-secondary-darkest-10{
  border-color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:border-t-secondary-darkest-10{
  border-top-color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:border-r-secondary-darkest-10{
  border-right-color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:border-b-secondary-darkest-10{
  border-bottom-color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:border-l-secondary-darkest-10{
  border-left-color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:border-secondary-darker-10{
  border-color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:border-t-secondary-darker-10{
  border-top-color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:border-r-secondary-darker-10{
  border-right-color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:border-b-secondary-darker-10{
  border-bottom-color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:border-l-secondary-darker-10{
  border-left-color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:border-secondary-dark-10{
  border-color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:border-t-secondary-dark-10{
  border-top-color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:border-r-secondary-dark-10{
  border-right-color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:border-b-secondary-dark-10{
  border-bottom-color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:border-l-secondary-dark-10{
  border-left-color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:border-secondary-10{
  border-color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:border-t-secondary-10{
  border-top-color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:border-r-secondary-10{
  border-right-color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:border-b-secondary-10{
  border-bottom-color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:border-l-secondary-10{
  border-left-color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:border-secondary-light-10{
  border-color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:border-t-secondary-light-10{
  border-top-color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:border-r-secondary-light-10{
  border-right-color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:border-b-secondary-light-10{
  border-bottom-color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:border-l-secondary-light-10{
  border-left-color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:border-secondary-lighter-10{
  border-color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:border-t-secondary-lighter-10{
  border-top-color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:border-r-secondary-lighter-10{
  border-right-color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:border-b-secondary-lighter-10{
  border-bottom-color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:border-l-secondary-lighter-10{
  border-left-color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:border-secondary-lightest-10{
  border-color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:border-t-secondary-lightest-10{
  border-top-color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:border-r-secondary-lightest-10{
  border-right-color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:border-b-secondary-lightest-10{
  border-bottom-color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:border-l-secondary-lightest-10{
  border-left-color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:border-tertiary-darkest-10{
  border-color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-darkest-10{
  border-top-color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-darkest-10{
  border-right-color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-darkest-10{
  border-bottom-color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-darkest-10{
  border-left-color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:border-tertiary-darker-10{
  border-color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-darker-10{
  border-top-color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-darker-10{
  border-right-color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-darker-10{
  border-bottom-color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-darker-10{
  border-left-color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:border-tertiary-dark-10{
  border-color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-dark-10{
  border-top-color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-dark-10{
  border-right-color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-dark-10{
  border-bottom-color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-dark-10{
  border-left-color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:border-tertiary-10{
  border-color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-10{
  border-top-color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-10{
  border-right-color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-10{
  border-bottom-color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-10{
  border-left-color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:border-tertiary-light-10{
  border-color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-light-10{
  border-top-color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-light-10{
  border-right-color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-light-10{
  border-bottom-color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-light-10{
  border-left-color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:border-tertiary-lighter-10{
  border-color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-lighter-10{
  border-top-color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-lighter-10{
  border-right-color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-lighter-10{
  border-bottom-color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-lighter-10{
  border-left-color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:border-tertiary-lightest-10{
  border-color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:border-t-tertiary-lightest-10{
  border-top-color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:border-r-tertiary-lightest-10{
  border-right-color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:border-b-tertiary-lightest-10{
  border-bottom-color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:border-l-tertiary-lightest-10{
  border-left-color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:border-default-10{
  border-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-t-default-10{
  border-top-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-r-default-10{
  border-right-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-b-default-10{
  border-bottom-color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:border-l-default-10{
  border-left-color: rgba(179, 188, 197, 0.1);
}

.text-border-10{
  color: rgba(230, 235, 245, 0.1);
}

.text-form-10{
  color: rgba(121, 130, 139, 0.1);
}

.text-form-active-10{
  color: rgba(66, 80, 92, 0.1);
}

.text-black-10{
  color: rgba(33, 37, 41, 0.1);
}

.text-grey-darkest-10{
  color: rgba(154, 165, 192, 0.1);
}

.text-grey-darker-10{
  color: rgba(154, 165, 192, 0.1);
}

.text-grey-dark-10{
  color: rgba(66, 80, 92, 0.1);
}

.text-grey-10{
  color: rgba(121, 130, 139, 0.1);
}

.text-grey-light-10{
  color: rgba(179, 188, 197, 0.1);
}

.text-grey-lighter-10{
  color: rgba(222, 228, 233, 0.1);
}

.text-grey-lightest-10{
  color: rgba(244, 246, 249, 0.1);
}

.text-white-10{
  color: rgba(255, 255, 255, 0.1);
}

.text-red-10{
  color: rgba(211, 26, 8, 0.1);
}

.text-green-10{
  color: rgba(102, 187, 8, 0.1);
}

.text-blue-10{
  color: rgba(31, 168, 226, 0.1);
}

.text-orange-10{
  color: rgba(247, 148, 14, 0.1);
}

.text-primary-darkest-10{
  color: rgba(83, 15, 18, 0.1);
}

.text-primary-darker-10{
  color: rgba(124, 23, 27, 0.1);
}

.text-primary-dark-10{
  color: rgba(166, 30, 36, 0.1);
}

.text-primary-10{
  color: rgba(207, 38, 45, 0.1);
}

.text-primary-light-10{
  color: rgba(217, 81, 87, 0.1);
}

.text-primary-lighter-10{
  color: rgba(226, 125, 129, 0.1);
}

.text-primary-lightest-10{
  color: rgba(236, 168, 171, 0.1);
}

.text-secondary-darkest-10{
  color: rgba(62, 69, 37, 0.1);
}

.text-secondary-darker-10{
  color: rgba(94, 104, 55, 0.1);
}

.text-secondary-dark-10{
  color: rgba(125, 138, 74, 0.1);
}

.text-secondary-10{
  color: rgba(156, 173, 92, 0.1);
}

.text-secondary-light-10{
  color: rgba(176, 189, 125, 0.1);
}

.text-secondary-lighter-10{
  color: rgba(196, 206, 157, 0.1);
}

.text-secondary-lightest-10{
  color: rgba(215, 222, 190, 0.1);
}

.text-tertiary-darkest-10{
  color: rgba(15, 47, 33, 0.1);
}

.text-tertiary-darker-10{
  color: rgba(26, 71, 49, 0.1);
}

.text-tertiary-dark-10{
  color: rgba(31, 157, 85, 0.1);
}

.text-tertiary-10{
  color: rgba(255, 197, 0, 0.1);
}

.text-tertiary-light-10{
  color: rgba(81, 216, 138, 0.1);
}

.text-tertiary-lighter-10{
  color: rgba(162, 245, 191, 0.1);
}

.text-tertiary-lightest-10{
  color: rgba(227, 252, 236, 0.1);
}

.hover\:text-border-10:hover{
  color: rgba(230, 235, 245, 0.1);
}

.hover\:text-form-10:hover{
  color: rgba(121, 130, 139, 0.1);
}

.hover\:text-form-active-10:hover{
  color: rgba(66, 80, 92, 0.1);
}

.hover\:text-black-10:hover{
  color: rgba(33, 37, 41, 0.1);
}

.hover\:text-grey-darkest-10:hover{
  color: rgba(154, 165, 192, 0.1);
}

.hover\:text-grey-darker-10:hover{
  color: rgba(154, 165, 192, 0.1);
}

.hover\:text-grey-dark-10:hover{
  color: rgba(66, 80, 92, 0.1);
}

.hover\:text-grey-10:hover{
  color: rgba(121, 130, 139, 0.1);
}

.hover\:text-grey-light-10:hover{
  color: rgba(179, 188, 197, 0.1);
}

.hover\:text-grey-lighter-10:hover{
  color: rgba(222, 228, 233, 0.1);
}

.hover\:text-grey-lightest-10:hover{
  color: rgba(244, 246, 249, 0.1);
}

.hover\:text-white-10:hover{
  color: rgba(255, 255, 255, 0.1);
}

.hover\:text-red-10:hover{
  color: rgba(211, 26, 8, 0.1);
}

.hover\:text-green-10:hover{
  color: rgba(102, 187, 8, 0.1);
}

.hover\:text-blue-10:hover{
  color: rgba(31, 168, 226, 0.1);
}

.hover\:text-orange-10:hover{
  color: rgba(247, 148, 14, 0.1);
}

.hover\:text-primary-darkest-10:hover{
  color: rgba(83, 15, 18, 0.1);
}

.hover\:text-primary-darker-10:hover{
  color: rgba(124, 23, 27, 0.1);
}

.hover\:text-primary-dark-10:hover{
  color: rgba(166, 30, 36, 0.1);
}

.hover\:text-primary-10:hover{
  color: rgba(207, 38, 45, 0.1);
}

.hover\:text-primary-light-10:hover{
  color: rgba(217, 81, 87, 0.1);
}

.hover\:text-primary-lighter-10:hover{
  color: rgba(226, 125, 129, 0.1);
}

.hover\:text-primary-lightest-10:hover{
  color: rgba(236, 168, 171, 0.1);
}

.hover\:text-secondary-darkest-10:hover{
  color: rgba(62, 69, 37, 0.1);
}

.hover\:text-secondary-darker-10:hover{
  color: rgba(94, 104, 55, 0.1);
}

.hover\:text-secondary-dark-10:hover{
  color: rgba(125, 138, 74, 0.1);
}

.hover\:text-secondary-10:hover{
  color: rgba(156, 173, 92, 0.1);
}

.hover\:text-secondary-light-10:hover{
  color: rgba(176, 189, 125, 0.1);
}

.hover\:text-secondary-lighter-10:hover{
  color: rgba(196, 206, 157, 0.1);
}

.hover\:text-secondary-lightest-10:hover{
  color: rgba(215, 222, 190, 0.1);
}

.hover\:text-tertiary-darkest-10:hover{
  color: rgba(15, 47, 33, 0.1);
}

.hover\:text-tertiary-darker-10:hover{
  color: rgba(26, 71, 49, 0.1);
}

.hover\:text-tertiary-dark-10:hover{
  color: rgba(31, 157, 85, 0.1);
}

.hover\:text-tertiary-10:hover{
  color: rgba(255, 197, 0, 0.1);
}

.hover\:text-tertiary-light-10:hover{
  color: rgba(81, 216, 138, 0.1);
}

.hover\:text-tertiary-lighter-10:hover{
  color: rgba(162, 245, 191, 0.1);
}

.hover\:text-tertiary-lightest-10:hover{
  color: rgba(227, 252, 236, 0.1);
}

.focus\:text-border-10:focus{
  color: rgba(230, 235, 245, 0.1);
}

.focus\:text-form-10:focus{
  color: rgba(121, 130, 139, 0.1);
}

.focus\:text-form-active-10:focus{
  color: rgba(66, 80, 92, 0.1);
}

.focus\:text-black-10:focus{
  color: rgba(33, 37, 41, 0.1);
}

.focus\:text-grey-darkest-10:focus{
  color: rgba(154, 165, 192, 0.1);
}

.focus\:text-grey-darker-10:focus{
  color: rgba(154, 165, 192, 0.1);
}

.focus\:text-grey-dark-10:focus{
  color: rgba(66, 80, 92, 0.1);
}

.focus\:text-grey-10:focus{
  color: rgba(121, 130, 139, 0.1);
}

.focus\:text-grey-light-10:focus{
  color: rgba(179, 188, 197, 0.1);
}

.focus\:text-grey-lighter-10:focus{
  color: rgba(222, 228, 233, 0.1);
}

.focus\:text-grey-lightest-10:focus{
  color: rgba(244, 246, 249, 0.1);
}

.focus\:text-white-10:focus{
  color: rgba(255, 255, 255, 0.1);
}

.focus\:text-red-10:focus{
  color: rgba(211, 26, 8, 0.1);
}

.focus\:text-green-10:focus{
  color: rgba(102, 187, 8, 0.1);
}

.focus\:text-blue-10:focus{
  color: rgba(31, 168, 226, 0.1);
}

.focus\:text-orange-10:focus{
  color: rgba(247, 148, 14, 0.1);
}

.focus\:text-primary-darkest-10:focus{
  color: rgba(83, 15, 18, 0.1);
}

.focus\:text-primary-darker-10:focus{
  color: rgba(124, 23, 27, 0.1);
}

.focus\:text-primary-dark-10:focus{
  color: rgba(166, 30, 36, 0.1);
}

.focus\:text-primary-10:focus{
  color: rgba(207, 38, 45, 0.1);
}

.focus\:text-primary-light-10:focus{
  color: rgba(217, 81, 87, 0.1);
}

.focus\:text-primary-lighter-10:focus{
  color: rgba(226, 125, 129, 0.1);
}

.focus\:text-primary-lightest-10:focus{
  color: rgba(236, 168, 171, 0.1);
}

.focus\:text-secondary-darkest-10:focus{
  color: rgba(62, 69, 37, 0.1);
}

.focus\:text-secondary-darker-10:focus{
  color: rgba(94, 104, 55, 0.1);
}

.focus\:text-secondary-dark-10:focus{
  color: rgba(125, 138, 74, 0.1);
}

.focus\:text-secondary-10:focus{
  color: rgba(156, 173, 92, 0.1);
}

.focus\:text-secondary-light-10:focus{
  color: rgba(176, 189, 125, 0.1);
}

.focus\:text-secondary-lighter-10:focus{
  color: rgba(196, 206, 157, 0.1);
}

.focus\:text-secondary-lightest-10:focus{
  color: rgba(215, 222, 190, 0.1);
}

.focus\:text-tertiary-darkest-10:focus{
  color: rgba(15, 47, 33, 0.1);
}

.focus\:text-tertiary-darker-10:focus{
  color: rgba(26, 71, 49, 0.1);
}

.focus\:text-tertiary-dark-10:focus{
  color: rgba(31, 157, 85, 0.1);
}

.focus\:text-tertiary-10:focus{
  color: rgba(255, 197, 0, 0.1);
}

.focus\:text-tertiary-light-10:focus{
  color: rgba(81, 216, 138, 0.1);
}

.focus\:text-tertiary-lighter-10:focus{
  color: rgba(162, 245, 191, 0.1);
}

.focus\:text-tertiary-lightest-10:focus{
  color: rgba(227, 252, 236, 0.1);
}

.focus\:text-border-10:focus{
  color: rgba(230, 235, 245, 0.1);
}

.focus\:text-form-10:focus{
  color: rgba(121, 130, 139, 0.1);
}

.focus\:text-form-active-10:focus{
  color: rgba(66, 80, 92, 0.1);
}

.focus\:text-black-10:focus{
  color: rgba(33, 37, 41, 0.1);
}

.focus\:text-grey-darkest-10:focus{
  color: rgba(154, 165, 192, 0.1);
}

.focus\:text-grey-darker-10:focus{
  color: rgba(154, 165, 192, 0.1);
}

.focus\:text-grey-dark-10:focus{
  color: rgba(66, 80, 92, 0.1);
}

.focus\:text-grey-10:focus{
  color: rgba(121, 130, 139, 0.1);
}

.focus\:text-grey-light-10:focus{
  color: rgba(179, 188, 197, 0.1);
}

.focus\:text-grey-lighter-10:focus{
  color: rgba(222, 228, 233, 0.1);
}

.focus\:text-grey-lightest-10:focus{
  color: rgba(244, 246, 249, 0.1);
}

.focus\:text-white-10:focus{
  color: rgba(255, 255, 255, 0.1);
}

.focus\:text-red-10:focus{
  color: rgba(211, 26, 8, 0.1);
}

.focus\:text-green-10:focus{
  color: rgba(102, 187, 8, 0.1);
}

.focus\:text-blue-10:focus{
  color: rgba(31, 168, 226, 0.1);
}

.focus\:text-orange-10:focus{
  color: rgba(247, 148, 14, 0.1);
}

.focus\:text-primary-darkest-10:focus{
  color: rgba(83, 15, 18, 0.1);
}

.focus\:text-primary-darker-10:focus{
  color: rgba(124, 23, 27, 0.1);
}

.focus\:text-primary-dark-10:focus{
  color: rgba(166, 30, 36, 0.1);
}

.focus\:text-primary-10:focus{
  color: rgba(207, 38, 45, 0.1);
}

.focus\:text-primary-light-10:focus{
  color: rgba(217, 81, 87, 0.1);
}

.focus\:text-primary-lighter-10:focus{
  color: rgba(226, 125, 129, 0.1);
}

.focus\:text-primary-lightest-10:focus{
  color: rgba(236, 168, 171, 0.1);
}

.focus\:text-secondary-darkest-10:focus{
  color: rgba(62, 69, 37, 0.1);
}

.focus\:text-secondary-darker-10:focus{
  color: rgba(94, 104, 55, 0.1);
}

.focus\:text-secondary-dark-10:focus{
  color: rgba(125, 138, 74, 0.1);
}

.focus\:text-secondary-10:focus{
  color: rgba(156, 173, 92, 0.1);
}

.focus\:text-secondary-light-10:focus{
  color: rgba(176, 189, 125, 0.1);
}

.focus\:text-secondary-lighter-10:focus{
  color: rgba(196, 206, 157, 0.1);
}

.focus\:text-secondary-lightest-10:focus{
  color: rgba(215, 222, 190, 0.1);
}

.focus\:text-tertiary-darkest-10:focus{
  color: rgba(15, 47, 33, 0.1);
}

.focus\:text-tertiary-darker-10:focus{
  color: rgba(26, 71, 49, 0.1);
}

.focus\:text-tertiary-dark-10:focus{
  color: rgba(31, 157, 85, 0.1);
}

.focus\:text-tertiary-10:focus{
  color: rgba(255, 197, 0, 0.1);
}

.focus\:text-tertiary-light-10:focus{
  color: rgba(81, 216, 138, 0.1);
}

.focus\:text-tertiary-lighter-10:focus{
  color: rgba(162, 245, 191, 0.1);
}

.focus\:text-tertiary-lightest-10:focus{
  color: rgba(227, 252, 236, 0.1);
}

.group:hover .group-hover\:text-border-10{
  color: rgba(230, 235, 245, 0.1);
}

.group:hover .group-hover\:text-form-10{
  color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:text-form-active-10{
  color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:text-black-10{
  color: rgba(33, 37, 41, 0.1);
}

.group:hover .group-hover\:text-grey-darkest-10{
  color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:text-grey-darker-10{
  color: rgba(154, 165, 192, 0.1);
}

.group:hover .group-hover\:text-grey-dark-10{
  color: rgba(66, 80, 92, 0.1);
}

.group:hover .group-hover\:text-grey-10{
  color: rgba(121, 130, 139, 0.1);
}

.group:hover .group-hover\:text-grey-light-10{
  color: rgba(179, 188, 197, 0.1);
}

.group:hover .group-hover\:text-grey-lighter-10{
  color: rgba(222, 228, 233, 0.1);
}

.group:hover .group-hover\:text-grey-lightest-10{
  color: rgba(244, 246, 249, 0.1);
}

.group:hover .group-hover\:text-white-10{
  color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:text-red-10{
  color: rgba(211, 26, 8, 0.1);
}

.group:hover .group-hover\:text-green-10{
  color: rgba(102, 187, 8, 0.1);
}

.group:hover .group-hover\:text-blue-10{
  color: rgba(31, 168, 226, 0.1);
}

.group:hover .group-hover\:text-orange-10{
  color: rgba(247, 148, 14, 0.1);
}

.group:hover .group-hover\:text-primary-darkest-10{
  color: rgba(83, 15, 18, 0.1);
}

.group:hover .group-hover\:text-primary-darker-10{
  color: rgba(124, 23, 27, 0.1);
}

.group:hover .group-hover\:text-primary-dark-10{
  color: rgba(166, 30, 36, 0.1);
}

.group:hover .group-hover\:text-primary-10{
  color: rgba(207, 38, 45, 0.1);
}

.group:hover .group-hover\:text-primary-light-10{
  color: rgba(217, 81, 87, 0.1);
}

.group:hover .group-hover\:text-primary-lighter-10{
  color: rgba(226, 125, 129, 0.1);
}

.group:hover .group-hover\:text-primary-lightest-10{
  color: rgba(236, 168, 171, 0.1);
}

.group:hover .group-hover\:text-secondary-darkest-10{
  color: rgba(62, 69, 37, 0.1);
}

.group:hover .group-hover\:text-secondary-darker-10{
  color: rgba(94, 104, 55, 0.1);
}

.group:hover .group-hover\:text-secondary-dark-10{
  color: rgba(125, 138, 74, 0.1);
}

.group:hover .group-hover\:text-secondary-10{
  color: rgba(156, 173, 92, 0.1);
}

.group:hover .group-hover\:text-secondary-light-10{
  color: rgba(176, 189, 125, 0.1);
}

.group:hover .group-hover\:text-secondary-lighter-10{
  color: rgba(196, 206, 157, 0.1);
}

.group:hover .group-hover\:text-secondary-lightest-10{
  color: rgba(215, 222, 190, 0.1);
}

.group:hover .group-hover\:text-tertiary-darkest-10{
  color: rgba(15, 47, 33, 0.1);
}

.group:hover .group-hover\:text-tertiary-darker-10{
  color: rgba(26, 71, 49, 0.1);
}

.group:hover .group-hover\:text-tertiary-dark-10{
  color: rgba(31, 157, 85, 0.1);
}

.group:hover .group-hover\:text-tertiary-10{
  color: rgba(255, 197, 0, 0.1);
}

.group:hover .group-hover\:text-tertiary-light-10{
  color: rgba(81, 216, 138, 0.1);
}

.group:hover .group-hover\:text-tertiary-lighter-10{
  color: rgba(162, 245, 191, 0.1);
}

.group:hover .group-hover\:text-tertiary-lightest-10{
  color: rgba(227, 252, 236, 0.1);
}

.bg-border-20{
  background-color: rgba(230, 235, 245, 0.2);
}

.bg-form-20{
  background-color: rgba(121, 130, 139, 0.2);
}

.bg-form-active-20{
  background-color: rgba(66, 80, 92, 0.2);
}

.bg-black-20{
  background-color: rgba(33, 37, 41, 0.2);
}

.bg-grey-darkest-20{
  background-color: rgba(154, 165, 192, 0.2);
}

.bg-grey-darker-20{
  background-color: rgba(154, 165, 192, 0.2);
}

.bg-grey-dark-20{
  background-color: rgba(66, 80, 92, 0.2);
}

.bg-grey-20{
  background-color: rgba(121, 130, 139, 0.2);
}

.bg-grey-light-20{
  background-color: rgba(179, 188, 197, 0.2);
}

.bg-grey-lighter-20{
  background-color: rgba(222, 228, 233, 0.2);
}

.bg-grey-lightest-20{
  background-color: rgba(244, 246, 249, 0.2);
}

.bg-white-20{
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-red-20{
  background-color: rgba(211, 26, 8, 0.2);
}

.bg-green-20{
  background-color: rgba(102, 187, 8, 0.2);
}

.bg-blue-20{
  background-color: rgba(31, 168, 226, 0.2);
}

.bg-orange-20{
  background-color: rgba(247, 148, 14, 0.2);
}

.bg-primary-darkest-20{
  background-color: rgba(83, 15, 18, 0.2);
}

.bg-primary-darker-20{
  background-color: rgba(124, 23, 27, 0.2);
}

.bg-primary-dark-20{
  background-color: rgba(166, 30, 36, 0.2);
}

.bg-primary-20{
  background-color: rgba(207, 38, 45, 0.2);
}

.bg-primary-light-20{
  background-color: rgba(217, 81, 87, 0.2);
}

.bg-primary-lighter-20{
  background-color: rgba(226, 125, 129, 0.2);
}

.bg-primary-lightest-20{
  background-color: rgba(236, 168, 171, 0.2);
}

.bg-secondary-darkest-20{
  background-color: rgba(62, 69, 37, 0.2);
}

.bg-secondary-darker-20{
  background-color: rgba(94, 104, 55, 0.2);
}

.bg-secondary-dark-20{
  background-color: rgba(125, 138, 74, 0.2);
}

.bg-secondary-20{
  background-color: rgba(156, 173, 92, 0.2);
}

.bg-secondary-light-20{
  background-color: rgba(176, 189, 125, 0.2);
}

.bg-secondary-lighter-20{
  background-color: rgba(196, 206, 157, 0.2);
}

.bg-secondary-lightest-20{
  background-color: rgba(215, 222, 190, 0.2);
}

.bg-tertiary-darkest-20{
  background-color: rgba(15, 47, 33, 0.2);
}

.bg-tertiary-darker-20{
  background-color: rgba(26, 71, 49, 0.2);
}

.bg-tertiary-dark-20{
  background-color: rgba(31, 157, 85, 0.2);
}

.bg-tertiary-20{
  background-color: rgba(255, 197, 0, 0.2);
}

.bg-tertiary-light-20{
  background-color: rgba(81, 216, 138, 0.2);
}

.bg-tertiary-lighter-20{
  background-color: rgba(162, 245, 191, 0.2);
}

.bg-tertiary-lightest-20{
  background-color: rgba(227, 252, 236, 0.2);
}

.hover\:bg-border-20:hover{
  background-color: rgba(230, 235, 245, 0.2);
}

.hover\:bg-form-20:hover{
  background-color: rgba(121, 130, 139, 0.2);
}

.hover\:bg-form-active-20:hover{
  background-color: rgba(66, 80, 92, 0.2);
}

.hover\:bg-black-20:hover{
  background-color: rgba(33, 37, 41, 0.2);
}

.hover\:bg-grey-darkest-20:hover{
  background-color: rgba(154, 165, 192, 0.2);
}

.hover\:bg-grey-darker-20:hover{
  background-color: rgba(154, 165, 192, 0.2);
}

.hover\:bg-grey-dark-20:hover{
  background-color: rgba(66, 80, 92, 0.2);
}

.hover\:bg-grey-20:hover{
  background-color: rgba(121, 130, 139, 0.2);
}

.hover\:bg-grey-light-20:hover{
  background-color: rgba(179, 188, 197, 0.2);
}

.hover\:bg-grey-lighter-20:hover{
  background-color: rgba(222, 228, 233, 0.2);
}

.hover\:bg-grey-lightest-20:hover{
  background-color: rgba(244, 246, 249, 0.2);
}

.hover\:bg-white-20:hover{
  background-color: rgba(255, 255, 255, 0.2);
}

.hover\:bg-red-20:hover{
  background-color: rgba(211, 26, 8, 0.2);
}

.hover\:bg-green-20:hover{
  background-color: rgba(102, 187, 8, 0.2);
}

.hover\:bg-blue-20:hover{
  background-color: rgba(31, 168, 226, 0.2);
}

.hover\:bg-orange-20:hover{
  background-color: rgba(247, 148, 14, 0.2);
}

.hover\:bg-primary-darkest-20:hover{
  background-color: rgba(83, 15, 18, 0.2);
}

.hover\:bg-primary-darker-20:hover{
  background-color: rgba(124, 23, 27, 0.2);
}

.hover\:bg-primary-dark-20:hover{
  background-color: rgba(166, 30, 36, 0.2);
}

.hover\:bg-primary-20:hover{
  background-color: rgba(207, 38, 45, 0.2);
}

.hover\:bg-primary-light-20:hover{
  background-color: rgba(217, 81, 87, 0.2);
}

.hover\:bg-primary-lighter-20:hover{
  background-color: rgba(226, 125, 129, 0.2);
}

.hover\:bg-primary-lightest-20:hover{
  background-color: rgba(236, 168, 171, 0.2);
}

.hover\:bg-secondary-darkest-20:hover{
  background-color: rgba(62, 69, 37, 0.2);
}

.hover\:bg-secondary-darker-20:hover{
  background-color: rgba(94, 104, 55, 0.2);
}

.hover\:bg-secondary-dark-20:hover{
  background-color: rgba(125, 138, 74, 0.2);
}

.hover\:bg-secondary-20:hover{
  background-color: rgba(156, 173, 92, 0.2);
}

.hover\:bg-secondary-light-20:hover{
  background-color: rgba(176, 189, 125, 0.2);
}

.hover\:bg-secondary-lighter-20:hover{
  background-color: rgba(196, 206, 157, 0.2);
}

.hover\:bg-secondary-lightest-20:hover{
  background-color: rgba(215, 222, 190, 0.2);
}

.hover\:bg-tertiary-darkest-20:hover{
  background-color: rgba(15, 47, 33, 0.2);
}

.hover\:bg-tertiary-darker-20:hover{
  background-color: rgba(26, 71, 49, 0.2);
}

.hover\:bg-tertiary-dark-20:hover{
  background-color: rgba(31, 157, 85, 0.2);
}

.hover\:bg-tertiary-20:hover{
  background-color: rgba(255, 197, 0, 0.2);
}

.hover\:bg-tertiary-light-20:hover{
  background-color: rgba(81, 216, 138, 0.2);
}

.hover\:bg-tertiary-lighter-20:hover{
  background-color: rgba(162, 245, 191, 0.2);
}

.hover\:bg-tertiary-lightest-20:hover{
  background-color: rgba(227, 252, 236, 0.2);
}

.focus\:bg-border-20:focus{
  background-color: rgba(230, 235, 245, 0.2);
}

.focus\:bg-form-20:focus{
  background-color: rgba(121, 130, 139, 0.2);
}

.focus\:bg-form-active-20:focus{
  background-color: rgba(66, 80, 92, 0.2);
}

.focus\:bg-black-20:focus{
  background-color: rgba(33, 37, 41, 0.2);
}

.focus\:bg-grey-darkest-20:focus{
  background-color: rgba(154, 165, 192, 0.2);
}

.focus\:bg-grey-darker-20:focus{
  background-color: rgba(154, 165, 192, 0.2);
}

.focus\:bg-grey-dark-20:focus{
  background-color: rgba(66, 80, 92, 0.2);
}

.focus\:bg-grey-20:focus{
  background-color: rgba(121, 130, 139, 0.2);
}

.focus\:bg-grey-light-20:focus{
  background-color: rgba(179, 188, 197, 0.2);
}

.focus\:bg-grey-lighter-20:focus{
  background-color: rgba(222, 228, 233, 0.2);
}

.focus\:bg-grey-lightest-20:focus{
  background-color: rgba(244, 246, 249, 0.2);
}

.focus\:bg-white-20:focus{
  background-color: rgba(255, 255, 255, 0.2);
}

.focus\:bg-red-20:focus{
  background-color: rgba(211, 26, 8, 0.2);
}

.focus\:bg-green-20:focus{
  background-color: rgba(102, 187, 8, 0.2);
}

.focus\:bg-blue-20:focus{
  background-color: rgba(31, 168, 226, 0.2);
}

.focus\:bg-orange-20:focus{
  background-color: rgba(247, 148, 14, 0.2);
}

.focus\:bg-primary-darkest-20:focus{
  background-color: rgba(83, 15, 18, 0.2);
}

.focus\:bg-primary-darker-20:focus{
  background-color: rgba(124, 23, 27, 0.2);
}

.focus\:bg-primary-dark-20:focus{
  background-color: rgba(166, 30, 36, 0.2);
}

.focus\:bg-primary-20:focus{
  background-color: rgba(207, 38, 45, 0.2);
}

.focus\:bg-primary-light-20:focus{
  background-color: rgba(217, 81, 87, 0.2);
}

.focus\:bg-primary-lighter-20:focus{
  background-color: rgba(226, 125, 129, 0.2);
}

.focus\:bg-primary-lightest-20:focus{
  background-color: rgba(236, 168, 171, 0.2);
}

.focus\:bg-secondary-darkest-20:focus{
  background-color: rgba(62, 69, 37, 0.2);
}

.focus\:bg-secondary-darker-20:focus{
  background-color: rgba(94, 104, 55, 0.2);
}

.focus\:bg-secondary-dark-20:focus{
  background-color: rgba(125, 138, 74, 0.2);
}

.focus\:bg-secondary-20:focus{
  background-color: rgba(156, 173, 92, 0.2);
}

.focus\:bg-secondary-light-20:focus{
  background-color: rgba(176, 189, 125, 0.2);
}

.focus\:bg-secondary-lighter-20:focus{
  background-color: rgba(196, 206, 157, 0.2);
}

.focus\:bg-secondary-lightest-20:focus{
  background-color: rgba(215, 222, 190, 0.2);
}

.focus\:bg-tertiary-darkest-20:focus{
  background-color: rgba(15, 47, 33, 0.2);
}

.focus\:bg-tertiary-darker-20:focus{
  background-color: rgba(26, 71, 49, 0.2);
}

.focus\:bg-tertiary-dark-20:focus{
  background-color: rgba(31, 157, 85, 0.2);
}

.focus\:bg-tertiary-20:focus{
  background-color: rgba(255, 197, 0, 0.2);
}

.focus\:bg-tertiary-light-20:focus{
  background-color: rgba(81, 216, 138, 0.2);
}

.focus\:bg-tertiary-lighter-20:focus{
  background-color: rgba(162, 245, 191, 0.2);
}

.focus\:bg-tertiary-lightest-20:focus{
  background-color: rgba(227, 252, 236, 0.2);
}

.focus\:bg-border-20:focus{
  background-color: rgba(230, 235, 245, 0.2);
}

.focus\:bg-form-20:focus{
  background-color: rgba(121, 130, 139, 0.2);
}

.focus\:bg-form-active-20:focus{
  background-color: rgba(66, 80, 92, 0.2);
}

.focus\:bg-black-20:focus{
  background-color: rgba(33, 37, 41, 0.2);
}

.focus\:bg-grey-darkest-20:focus{
  background-color: rgba(154, 165, 192, 0.2);
}

.focus\:bg-grey-darker-20:focus{
  background-color: rgba(154, 165, 192, 0.2);
}

.focus\:bg-grey-dark-20:focus{
  background-color: rgba(66, 80, 92, 0.2);
}

.focus\:bg-grey-20:focus{
  background-color: rgba(121, 130, 139, 0.2);
}

.focus\:bg-grey-light-20:focus{
  background-color: rgba(179, 188, 197, 0.2);
}

.focus\:bg-grey-lighter-20:focus{
  background-color: rgba(222, 228, 233, 0.2);
}

.focus\:bg-grey-lightest-20:focus{
  background-color: rgba(244, 246, 249, 0.2);
}

.focus\:bg-white-20:focus{
  background-color: rgba(255, 255, 255, 0.2);
}

.focus\:bg-red-20:focus{
  background-color: rgba(211, 26, 8, 0.2);
}

.focus\:bg-green-20:focus{
  background-color: rgba(102, 187, 8, 0.2);
}

.focus\:bg-blue-20:focus{
  background-color: rgba(31, 168, 226, 0.2);
}

.focus\:bg-orange-20:focus{
  background-color: rgba(247, 148, 14, 0.2);
}

.focus\:bg-primary-darkest-20:focus{
  background-color: rgba(83, 15, 18, 0.2);
}

.focus\:bg-primary-darker-20:focus{
  background-color: rgba(124, 23, 27, 0.2);
}

.focus\:bg-primary-dark-20:focus{
  background-color: rgba(166, 30, 36, 0.2);
}

.focus\:bg-primary-20:focus{
  background-color: rgba(207, 38, 45, 0.2);
}

.focus\:bg-primary-light-20:focus{
  background-color: rgba(217, 81, 87, 0.2);
}

.focus\:bg-primary-lighter-20:focus{
  background-color: rgba(226, 125, 129, 0.2);
}

.focus\:bg-primary-lightest-20:focus{
  background-color: rgba(236, 168, 171, 0.2);
}

.focus\:bg-secondary-darkest-20:focus{
  background-color: rgba(62, 69, 37, 0.2);
}

.focus\:bg-secondary-darker-20:focus{
  background-color: rgba(94, 104, 55, 0.2);
}

.focus\:bg-secondary-dark-20:focus{
  background-color: rgba(125, 138, 74, 0.2);
}

.focus\:bg-secondary-20:focus{
  background-color: rgba(156, 173, 92, 0.2);
}

.focus\:bg-secondary-light-20:focus{
  background-color: rgba(176, 189, 125, 0.2);
}

.focus\:bg-secondary-lighter-20:focus{
  background-color: rgba(196, 206, 157, 0.2);
}

.focus\:bg-secondary-lightest-20:focus{
  background-color: rgba(215, 222, 190, 0.2);
}

.focus\:bg-tertiary-darkest-20:focus{
  background-color: rgba(15, 47, 33, 0.2);
}

.focus\:bg-tertiary-darker-20:focus{
  background-color: rgba(26, 71, 49, 0.2);
}

.focus\:bg-tertiary-dark-20:focus{
  background-color: rgba(31, 157, 85, 0.2);
}

.focus\:bg-tertiary-20:focus{
  background-color: rgba(255, 197, 0, 0.2);
}

.focus\:bg-tertiary-light-20:focus{
  background-color: rgba(81, 216, 138, 0.2);
}

.focus\:bg-tertiary-lighter-20:focus{
  background-color: rgba(162, 245, 191, 0.2);
}

.focus\:bg-tertiary-lightest-20:focus{
  background-color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:bg-border-20{
  background-color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:bg-form-20{
  background-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:bg-form-active-20{
  background-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:bg-black-20{
  background-color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:bg-grey-darkest-20{
  background-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:bg-grey-darker-20{
  background-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:bg-grey-dark-20{
  background-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:bg-grey-20{
  background-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:bg-grey-light-20{
  background-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:bg-grey-lighter-20{
  background-color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:bg-grey-lightest-20{
  background-color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:bg-white-20{
  background-color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:bg-red-20{
  background-color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:bg-green-20{
  background-color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:bg-blue-20{
  background-color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:bg-orange-20{
  background-color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:bg-primary-darkest-20{
  background-color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:bg-primary-darker-20{
  background-color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:bg-primary-dark-20{
  background-color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:bg-primary-20{
  background-color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:bg-primary-light-20{
  background-color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:bg-primary-lighter-20{
  background-color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:bg-primary-lightest-20{
  background-color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:bg-secondary-darkest-20{
  background-color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:bg-secondary-darker-20{
  background-color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:bg-secondary-dark-20{
  background-color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:bg-secondary-20{
  background-color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:bg-secondary-light-20{
  background-color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:bg-secondary-lighter-20{
  background-color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:bg-secondary-lightest-20{
  background-color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:bg-tertiary-darkest-20{
  background-color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:bg-tertiary-darker-20{
  background-color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:bg-tertiary-dark-20{
  background-color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:bg-tertiary-20{
  background-color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:bg-tertiary-light-20{
  background-color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:bg-tertiary-lighter-20{
  background-color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:bg-tertiary-lightest-20{
  background-color: rgba(227, 252, 236, 0.2);
}

.border-border-20{
  border-color: rgba(230, 235, 245, 0.2);
}

.border-t-border-20{
  border-top-color: rgba(230, 235, 245, 0.2);
}

.border-r-border-20{
  border-right-color: rgba(230, 235, 245, 0.2);
}

.border-b-border-20{
  border-bottom-color: rgba(230, 235, 245, 0.2);
}

.border-l-border-20{
  border-left-color: rgba(230, 235, 245, 0.2);
}

.border-form-20{
  border-color: rgba(121, 130, 139, 0.2);
}

.border-t-form-20{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.border-r-form-20{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.border-b-form-20{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.border-l-form-20{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.border-form-active-20{
  border-color: rgba(66, 80, 92, 0.2);
}

.border-t-form-active-20{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.border-r-form-active-20{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.border-b-form-active-20{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.border-l-form-active-20{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.border-black-20{
  border-color: rgba(33, 37, 41, 0.2);
}

.border-t-black-20{
  border-top-color: rgba(33, 37, 41, 0.2);
}

.border-r-black-20{
  border-right-color: rgba(33, 37, 41, 0.2);
}

.border-b-black-20{
  border-bottom-color: rgba(33, 37, 41, 0.2);
}

.border-l-black-20{
  border-left-color: rgba(33, 37, 41, 0.2);
}

.border-grey-darkest-20{
  border-color: rgba(154, 165, 192, 0.2);
}

.border-t-grey-darkest-20{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.border-r-grey-darkest-20{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.border-b-grey-darkest-20{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.border-l-grey-darkest-20{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.border-grey-darker-20{
  border-color: rgba(154, 165, 192, 0.2);
}

.border-t-grey-darker-20{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.border-r-grey-darker-20{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.border-b-grey-darker-20{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.border-l-grey-darker-20{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.border-grey-dark-20{
  border-color: rgba(66, 80, 92, 0.2);
}

.border-t-grey-dark-20{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.border-r-grey-dark-20{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.border-b-grey-dark-20{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.border-l-grey-dark-20{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.border-grey-20{
  border-color: rgba(121, 130, 139, 0.2);
}

.border-t-grey-20{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.border-r-grey-20{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.border-b-grey-20{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.border-l-grey-20{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.border-grey-light-20{
  border-color: rgba(179, 188, 197, 0.2);
}

.border-t-grey-light-20{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.border-r-grey-light-20{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.border-b-grey-light-20{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.border-l-grey-light-20{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.border-grey-lighter-20{
  border-color: rgba(222, 228, 233, 0.2);
}

.border-t-grey-lighter-20{
  border-top-color: rgba(222, 228, 233, 0.2);
}

.border-r-grey-lighter-20{
  border-right-color: rgba(222, 228, 233, 0.2);
}

.border-b-grey-lighter-20{
  border-bottom-color: rgba(222, 228, 233, 0.2);
}

.border-l-grey-lighter-20{
  border-left-color: rgba(222, 228, 233, 0.2);
}

.border-grey-lightest-20{
  border-color: rgba(244, 246, 249, 0.2);
}

.border-t-grey-lightest-20{
  border-top-color: rgba(244, 246, 249, 0.2);
}

.border-r-grey-lightest-20{
  border-right-color: rgba(244, 246, 249, 0.2);
}

.border-b-grey-lightest-20{
  border-bottom-color: rgba(244, 246, 249, 0.2);
}

.border-l-grey-lightest-20{
  border-left-color: rgba(244, 246, 249, 0.2);
}

.border-white-20{
  border-color: rgba(255, 255, 255, 0.2);
}

.border-t-white-20{
  border-top-color: rgba(255, 255, 255, 0.2);
}

.border-r-white-20{
  border-right-color: rgba(255, 255, 255, 0.2);
}

.border-b-white-20{
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.border-l-white-20{
  border-left-color: rgba(255, 255, 255, 0.2);
}

.border-red-20{
  border-color: rgba(211, 26, 8, 0.2);
}

.border-t-red-20{
  border-top-color: rgba(211, 26, 8, 0.2);
}

.border-r-red-20{
  border-right-color: rgba(211, 26, 8, 0.2);
}

.border-b-red-20{
  border-bottom-color: rgba(211, 26, 8, 0.2);
}

.border-l-red-20{
  border-left-color: rgba(211, 26, 8, 0.2);
}

.border-green-20{
  border-color: rgba(102, 187, 8, 0.2);
}

.border-t-green-20{
  border-top-color: rgba(102, 187, 8, 0.2);
}

.border-r-green-20{
  border-right-color: rgba(102, 187, 8, 0.2);
}

.border-b-green-20{
  border-bottom-color: rgba(102, 187, 8, 0.2);
}

.border-l-green-20{
  border-left-color: rgba(102, 187, 8, 0.2);
}

.border-blue-20{
  border-color: rgba(31, 168, 226, 0.2);
}

.border-t-blue-20{
  border-top-color: rgba(31, 168, 226, 0.2);
}

.border-r-blue-20{
  border-right-color: rgba(31, 168, 226, 0.2);
}

.border-b-blue-20{
  border-bottom-color: rgba(31, 168, 226, 0.2);
}

.border-l-blue-20{
  border-left-color: rgba(31, 168, 226, 0.2);
}

.border-orange-20{
  border-color: rgba(247, 148, 14, 0.2);
}

.border-t-orange-20{
  border-top-color: rgba(247, 148, 14, 0.2);
}

.border-r-orange-20{
  border-right-color: rgba(247, 148, 14, 0.2);
}

.border-b-orange-20{
  border-bottom-color: rgba(247, 148, 14, 0.2);
}

.border-l-orange-20{
  border-left-color: rgba(247, 148, 14, 0.2);
}

.border-primary-darkest-20{
  border-color: rgba(83, 15, 18, 0.2);
}

.border-t-primary-darkest-20{
  border-top-color: rgba(83, 15, 18, 0.2);
}

.border-r-primary-darkest-20{
  border-right-color: rgba(83, 15, 18, 0.2);
}

.border-b-primary-darkest-20{
  border-bottom-color: rgba(83, 15, 18, 0.2);
}

.border-l-primary-darkest-20{
  border-left-color: rgba(83, 15, 18, 0.2);
}

.border-primary-darker-20{
  border-color: rgba(124, 23, 27, 0.2);
}

.border-t-primary-darker-20{
  border-top-color: rgba(124, 23, 27, 0.2);
}

.border-r-primary-darker-20{
  border-right-color: rgba(124, 23, 27, 0.2);
}

.border-b-primary-darker-20{
  border-bottom-color: rgba(124, 23, 27, 0.2);
}

.border-l-primary-darker-20{
  border-left-color: rgba(124, 23, 27, 0.2);
}

.border-primary-dark-20{
  border-color: rgba(166, 30, 36, 0.2);
}

.border-t-primary-dark-20{
  border-top-color: rgba(166, 30, 36, 0.2);
}

.border-r-primary-dark-20{
  border-right-color: rgba(166, 30, 36, 0.2);
}

.border-b-primary-dark-20{
  border-bottom-color: rgba(166, 30, 36, 0.2);
}

.border-l-primary-dark-20{
  border-left-color: rgba(166, 30, 36, 0.2);
}

.border-primary-20{
  border-color: rgba(207, 38, 45, 0.2);
}

.border-t-primary-20{
  border-top-color: rgba(207, 38, 45, 0.2);
}

.border-r-primary-20{
  border-right-color: rgba(207, 38, 45, 0.2);
}

.border-b-primary-20{
  border-bottom-color: rgba(207, 38, 45, 0.2);
}

.border-l-primary-20{
  border-left-color: rgba(207, 38, 45, 0.2);
}

.border-primary-light-20{
  border-color: rgba(217, 81, 87, 0.2);
}

.border-t-primary-light-20{
  border-top-color: rgba(217, 81, 87, 0.2);
}

.border-r-primary-light-20{
  border-right-color: rgba(217, 81, 87, 0.2);
}

.border-b-primary-light-20{
  border-bottom-color: rgba(217, 81, 87, 0.2);
}

.border-l-primary-light-20{
  border-left-color: rgba(217, 81, 87, 0.2);
}

.border-primary-lighter-20{
  border-color: rgba(226, 125, 129, 0.2);
}

.border-t-primary-lighter-20{
  border-top-color: rgba(226, 125, 129, 0.2);
}

.border-r-primary-lighter-20{
  border-right-color: rgba(226, 125, 129, 0.2);
}

.border-b-primary-lighter-20{
  border-bottom-color: rgba(226, 125, 129, 0.2);
}

.border-l-primary-lighter-20{
  border-left-color: rgba(226, 125, 129, 0.2);
}

.border-primary-lightest-20{
  border-color: rgba(236, 168, 171, 0.2);
}

.border-t-primary-lightest-20{
  border-top-color: rgba(236, 168, 171, 0.2);
}

.border-r-primary-lightest-20{
  border-right-color: rgba(236, 168, 171, 0.2);
}

.border-b-primary-lightest-20{
  border-bottom-color: rgba(236, 168, 171, 0.2);
}

.border-l-primary-lightest-20{
  border-left-color: rgba(236, 168, 171, 0.2);
}

.border-secondary-darkest-20{
  border-color: rgba(62, 69, 37, 0.2);
}

.border-t-secondary-darkest-20{
  border-top-color: rgba(62, 69, 37, 0.2);
}

.border-r-secondary-darkest-20{
  border-right-color: rgba(62, 69, 37, 0.2);
}

.border-b-secondary-darkest-20{
  border-bottom-color: rgba(62, 69, 37, 0.2);
}

.border-l-secondary-darkest-20{
  border-left-color: rgba(62, 69, 37, 0.2);
}

.border-secondary-darker-20{
  border-color: rgba(94, 104, 55, 0.2);
}

.border-t-secondary-darker-20{
  border-top-color: rgba(94, 104, 55, 0.2);
}

.border-r-secondary-darker-20{
  border-right-color: rgba(94, 104, 55, 0.2);
}

.border-b-secondary-darker-20{
  border-bottom-color: rgba(94, 104, 55, 0.2);
}

.border-l-secondary-darker-20{
  border-left-color: rgba(94, 104, 55, 0.2);
}

.border-secondary-dark-20{
  border-color: rgba(125, 138, 74, 0.2);
}

.border-t-secondary-dark-20{
  border-top-color: rgba(125, 138, 74, 0.2);
}

.border-r-secondary-dark-20{
  border-right-color: rgba(125, 138, 74, 0.2);
}

.border-b-secondary-dark-20{
  border-bottom-color: rgba(125, 138, 74, 0.2);
}

.border-l-secondary-dark-20{
  border-left-color: rgba(125, 138, 74, 0.2);
}

.border-secondary-20{
  border-color: rgba(156, 173, 92, 0.2);
}

.border-t-secondary-20{
  border-top-color: rgba(156, 173, 92, 0.2);
}

.border-r-secondary-20{
  border-right-color: rgba(156, 173, 92, 0.2);
}

.border-b-secondary-20{
  border-bottom-color: rgba(156, 173, 92, 0.2);
}

.border-l-secondary-20{
  border-left-color: rgba(156, 173, 92, 0.2);
}

.border-secondary-light-20{
  border-color: rgba(176, 189, 125, 0.2);
}

.border-t-secondary-light-20{
  border-top-color: rgba(176, 189, 125, 0.2);
}

.border-r-secondary-light-20{
  border-right-color: rgba(176, 189, 125, 0.2);
}

.border-b-secondary-light-20{
  border-bottom-color: rgba(176, 189, 125, 0.2);
}

.border-l-secondary-light-20{
  border-left-color: rgba(176, 189, 125, 0.2);
}

.border-secondary-lighter-20{
  border-color: rgba(196, 206, 157, 0.2);
}

.border-t-secondary-lighter-20{
  border-top-color: rgba(196, 206, 157, 0.2);
}

.border-r-secondary-lighter-20{
  border-right-color: rgba(196, 206, 157, 0.2);
}

.border-b-secondary-lighter-20{
  border-bottom-color: rgba(196, 206, 157, 0.2);
}

.border-l-secondary-lighter-20{
  border-left-color: rgba(196, 206, 157, 0.2);
}

.border-secondary-lightest-20{
  border-color: rgba(215, 222, 190, 0.2);
}

.border-t-secondary-lightest-20{
  border-top-color: rgba(215, 222, 190, 0.2);
}

.border-r-secondary-lightest-20{
  border-right-color: rgba(215, 222, 190, 0.2);
}

.border-b-secondary-lightest-20{
  border-bottom-color: rgba(215, 222, 190, 0.2);
}

.border-l-secondary-lightest-20{
  border-left-color: rgba(215, 222, 190, 0.2);
}

.border-tertiary-darkest-20{
  border-color: rgba(15, 47, 33, 0.2);
}

.border-t-tertiary-darkest-20{
  border-top-color: rgba(15, 47, 33, 0.2);
}

.border-r-tertiary-darkest-20{
  border-right-color: rgba(15, 47, 33, 0.2);
}

.border-b-tertiary-darkest-20{
  border-bottom-color: rgba(15, 47, 33, 0.2);
}

.border-l-tertiary-darkest-20{
  border-left-color: rgba(15, 47, 33, 0.2);
}

.border-tertiary-darker-20{
  border-color: rgba(26, 71, 49, 0.2);
}

.border-t-tertiary-darker-20{
  border-top-color: rgba(26, 71, 49, 0.2);
}

.border-r-tertiary-darker-20{
  border-right-color: rgba(26, 71, 49, 0.2);
}

.border-b-tertiary-darker-20{
  border-bottom-color: rgba(26, 71, 49, 0.2);
}

.border-l-tertiary-darker-20{
  border-left-color: rgba(26, 71, 49, 0.2);
}

.border-tertiary-dark-20{
  border-color: rgba(31, 157, 85, 0.2);
}

.border-t-tertiary-dark-20{
  border-top-color: rgba(31, 157, 85, 0.2);
}

.border-r-tertiary-dark-20{
  border-right-color: rgba(31, 157, 85, 0.2);
}

.border-b-tertiary-dark-20{
  border-bottom-color: rgba(31, 157, 85, 0.2);
}

.border-l-tertiary-dark-20{
  border-left-color: rgba(31, 157, 85, 0.2);
}

.border-tertiary-20{
  border-color: rgba(255, 197, 0, 0.2);
}

.border-t-tertiary-20{
  border-top-color: rgba(255, 197, 0, 0.2);
}

.border-r-tertiary-20{
  border-right-color: rgba(255, 197, 0, 0.2);
}

.border-b-tertiary-20{
  border-bottom-color: rgba(255, 197, 0, 0.2);
}

.border-l-tertiary-20{
  border-left-color: rgba(255, 197, 0, 0.2);
}

.border-tertiary-light-20{
  border-color: rgba(81, 216, 138, 0.2);
}

.border-t-tertiary-light-20{
  border-top-color: rgba(81, 216, 138, 0.2);
}

.border-r-tertiary-light-20{
  border-right-color: rgba(81, 216, 138, 0.2);
}

.border-b-tertiary-light-20{
  border-bottom-color: rgba(81, 216, 138, 0.2);
}

.border-l-tertiary-light-20{
  border-left-color: rgba(81, 216, 138, 0.2);
}

.border-tertiary-lighter-20{
  border-color: rgba(162, 245, 191, 0.2);
}

.border-t-tertiary-lighter-20{
  border-top-color: rgba(162, 245, 191, 0.2);
}

.border-r-tertiary-lighter-20{
  border-right-color: rgba(162, 245, 191, 0.2);
}

.border-b-tertiary-lighter-20{
  border-bottom-color: rgba(162, 245, 191, 0.2);
}

.border-l-tertiary-lighter-20{
  border-left-color: rgba(162, 245, 191, 0.2);
}

.border-tertiary-lightest-20{
  border-color: rgba(227, 252, 236, 0.2);
}

.border-t-tertiary-lightest-20{
  border-top-color: rgba(227, 252, 236, 0.2);
}

.border-r-tertiary-lightest-20{
  border-right-color: rgba(227, 252, 236, 0.2);
}

.border-b-tertiary-lightest-20{
  border-bottom-color: rgba(227, 252, 236, 0.2);
}

.border-l-tertiary-lightest-20{
  border-left-color: rgba(227, 252, 236, 0.2);
}

.border-default-20{
  border-color: rgba(179, 188, 197, 0.2);
}

.border-t-default-20{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.border-r-default-20{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.border-b-default-20{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.border-l-default-20{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-border-20:hover{
  border-color: rgba(230, 235, 245, 0.2);
}

.hover\:border-t-border-20:hover{
  border-top-color: rgba(230, 235, 245, 0.2);
}

.hover\:border-r-border-20:hover{
  border-right-color: rgba(230, 235, 245, 0.2);
}

.hover\:border-b-border-20:hover{
  border-bottom-color: rgba(230, 235, 245, 0.2);
}

.hover\:border-l-border-20:hover{
  border-left-color: rgba(230, 235, 245, 0.2);
}

.hover\:border-form-20:hover{
  border-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-t-form-20:hover{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-r-form-20:hover{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-b-form-20:hover{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-l-form-20:hover{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-form-active-20:hover{
  border-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-t-form-active-20:hover{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-r-form-active-20:hover{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-b-form-active-20:hover{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-l-form-active-20:hover{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-black-20:hover{
  border-color: rgba(33, 37, 41, 0.2);
}

.hover\:border-t-black-20:hover{
  border-top-color: rgba(33, 37, 41, 0.2);
}

.hover\:border-r-black-20:hover{
  border-right-color: rgba(33, 37, 41, 0.2);
}

.hover\:border-b-black-20:hover{
  border-bottom-color: rgba(33, 37, 41, 0.2);
}

.hover\:border-l-black-20:hover{
  border-left-color: rgba(33, 37, 41, 0.2);
}

.hover\:border-grey-darkest-20:hover{
  border-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-t-grey-darkest-20:hover{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-r-grey-darkest-20:hover{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-b-grey-darkest-20:hover{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-l-grey-darkest-20:hover{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-grey-darker-20:hover{
  border-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-t-grey-darker-20:hover{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-r-grey-darker-20:hover{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-b-grey-darker-20:hover{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-l-grey-darker-20:hover{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.hover\:border-grey-dark-20:hover{
  border-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-t-grey-dark-20:hover{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-r-grey-dark-20:hover{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-b-grey-dark-20:hover{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-l-grey-dark-20:hover{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.hover\:border-grey-20:hover{
  border-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-t-grey-20:hover{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-r-grey-20:hover{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-b-grey-20:hover{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-l-grey-20:hover{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.hover\:border-grey-light-20:hover{
  border-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-t-grey-light-20:hover{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-r-grey-light-20:hover{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-b-grey-light-20:hover{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-l-grey-light-20:hover{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-grey-lighter-20:hover{
  border-color: rgba(222, 228, 233, 0.2);
}

.hover\:border-t-grey-lighter-20:hover{
  border-top-color: rgba(222, 228, 233, 0.2);
}

.hover\:border-r-grey-lighter-20:hover{
  border-right-color: rgba(222, 228, 233, 0.2);
}

.hover\:border-b-grey-lighter-20:hover{
  border-bottom-color: rgba(222, 228, 233, 0.2);
}

.hover\:border-l-grey-lighter-20:hover{
  border-left-color: rgba(222, 228, 233, 0.2);
}

.hover\:border-grey-lightest-20:hover{
  border-color: rgba(244, 246, 249, 0.2);
}

.hover\:border-t-grey-lightest-20:hover{
  border-top-color: rgba(244, 246, 249, 0.2);
}

.hover\:border-r-grey-lightest-20:hover{
  border-right-color: rgba(244, 246, 249, 0.2);
}

.hover\:border-b-grey-lightest-20:hover{
  border-bottom-color: rgba(244, 246, 249, 0.2);
}

.hover\:border-l-grey-lightest-20:hover{
  border-left-color: rgba(244, 246, 249, 0.2);
}

.hover\:border-white-20:hover{
  border-color: rgba(255, 255, 255, 0.2);
}

.hover\:border-t-white-20:hover{
  border-top-color: rgba(255, 255, 255, 0.2);
}

.hover\:border-r-white-20:hover{
  border-right-color: rgba(255, 255, 255, 0.2);
}

.hover\:border-b-white-20:hover{
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hover\:border-l-white-20:hover{
  border-left-color: rgba(255, 255, 255, 0.2);
}

.hover\:border-red-20:hover{
  border-color: rgba(211, 26, 8, 0.2);
}

.hover\:border-t-red-20:hover{
  border-top-color: rgba(211, 26, 8, 0.2);
}

.hover\:border-r-red-20:hover{
  border-right-color: rgba(211, 26, 8, 0.2);
}

.hover\:border-b-red-20:hover{
  border-bottom-color: rgba(211, 26, 8, 0.2);
}

.hover\:border-l-red-20:hover{
  border-left-color: rgba(211, 26, 8, 0.2);
}

.hover\:border-green-20:hover{
  border-color: rgba(102, 187, 8, 0.2);
}

.hover\:border-t-green-20:hover{
  border-top-color: rgba(102, 187, 8, 0.2);
}

.hover\:border-r-green-20:hover{
  border-right-color: rgba(102, 187, 8, 0.2);
}

.hover\:border-b-green-20:hover{
  border-bottom-color: rgba(102, 187, 8, 0.2);
}

.hover\:border-l-green-20:hover{
  border-left-color: rgba(102, 187, 8, 0.2);
}

.hover\:border-blue-20:hover{
  border-color: rgba(31, 168, 226, 0.2);
}

.hover\:border-t-blue-20:hover{
  border-top-color: rgba(31, 168, 226, 0.2);
}

.hover\:border-r-blue-20:hover{
  border-right-color: rgba(31, 168, 226, 0.2);
}

.hover\:border-b-blue-20:hover{
  border-bottom-color: rgba(31, 168, 226, 0.2);
}

.hover\:border-l-blue-20:hover{
  border-left-color: rgba(31, 168, 226, 0.2);
}

.hover\:border-orange-20:hover{
  border-color: rgba(247, 148, 14, 0.2);
}

.hover\:border-t-orange-20:hover{
  border-top-color: rgba(247, 148, 14, 0.2);
}

.hover\:border-r-orange-20:hover{
  border-right-color: rgba(247, 148, 14, 0.2);
}

.hover\:border-b-orange-20:hover{
  border-bottom-color: rgba(247, 148, 14, 0.2);
}

.hover\:border-l-orange-20:hover{
  border-left-color: rgba(247, 148, 14, 0.2);
}

.hover\:border-primary-darkest-20:hover{
  border-color: rgba(83, 15, 18, 0.2);
}

.hover\:border-t-primary-darkest-20:hover{
  border-top-color: rgba(83, 15, 18, 0.2);
}

.hover\:border-r-primary-darkest-20:hover{
  border-right-color: rgba(83, 15, 18, 0.2);
}

.hover\:border-b-primary-darkest-20:hover{
  border-bottom-color: rgba(83, 15, 18, 0.2);
}

.hover\:border-l-primary-darkest-20:hover{
  border-left-color: rgba(83, 15, 18, 0.2);
}

.hover\:border-primary-darker-20:hover{
  border-color: rgba(124, 23, 27, 0.2);
}

.hover\:border-t-primary-darker-20:hover{
  border-top-color: rgba(124, 23, 27, 0.2);
}

.hover\:border-r-primary-darker-20:hover{
  border-right-color: rgba(124, 23, 27, 0.2);
}

.hover\:border-b-primary-darker-20:hover{
  border-bottom-color: rgba(124, 23, 27, 0.2);
}

.hover\:border-l-primary-darker-20:hover{
  border-left-color: rgba(124, 23, 27, 0.2);
}

.hover\:border-primary-dark-20:hover{
  border-color: rgba(166, 30, 36, 0.2);
}

.hover\:border-t-primary-dark-20:hover{
  border-top-color: rgba(166, 30, 36, 0.2);
}

.hover\:border-r-primary-dark-20:hover{
  border-right-color: rgba(166, 30, 36, 0.2);
}

.hover\:border-b-primary-dark-20:hover{
  border-bottom-color: rgba(166, 30, 36, 0.2);
}

.hover\:border-l-primary-dark-20:hover{
  border-left-color: rgba(166, 30, 36, 0.2);
}

.hover\:border-primary-20:hover{
  border-color: rgba(207, 38, 45, 0.2);
}

.hover\:border-t-primary-20:hover{
  border-top-color: rgba(207, 38, 45, 0.2);
}

.hover\:border-r-primary-20:hover{
  border-right-color: rgba(207, 38, 45, 0.2);
}

.hover\:border-b-primary-20:hover{
  border-bottom-color: rgba(207, 38, 45, 0.2);
}

.hover\:border-l-primary-20:hover{
  border-left-color: rgba(207, 38, 45, 0.2);
}

.hover\:border-primary-light-20:hover{
  border-color: rgba(217, 81, 87, 0.2);
}

.hover\:border-t-primary-light-20:hover{
  border-top-color: rgba(217, 81, 87, 0.2);
}

.hover\:border-r-primary-light-20:hover{
  border-right-color: rgba(217, 81, 87, 0.2);
}

.hover\:border-b-primary-light-20:hover{
  border-bottom-color: rgba(217, 81, 87, 0.2);
}

.hover\:border-l-primary-light-20:hover{
  border-left-color: rgba(217, 81, 87, 0.2);
}

.hover\:border-primary-lighter-20:hover{
  border-color: rgba(226, 125, 129, 0.2);
}

.hover\:border-t-primary-lighter-20:hover{
  border-top-color: rgba(226, 125, 129, 0.2);
}

.hover\:border-r-primary-lighter-20:hover{
  border-right-color: rgba(226, 125, 129, 0.2);
}

.hover\:border-b-primary-lighter-20:hover{
  border-bottom-color: rgba(226, 125, 129, 0.2);
}

.hover\:border-l-primary-lighter-20:hover{
  border-left-color: rgba(226, 125, 129, 0.2);
}

.hover\:border-primary-lightest-20:hover{
  border-color: rgba(236, 168, 171, 0.2);
}

.hover\:border-t-primary-lightest-20:hover{
  border-top-color: rgba(236, 168, 171, 0.2);
}

.hover\:border-r-primary-lightest-20:hover{
  border-right-color: rgba(236, 168, 171, 0.2);
}

.hover\:border-b-primary-lightest-20:hover{
  border-bottom-color: rgba(236, 168, 171, 0.2);
}

.hover\:border-l-primary-lightest-20:hover{
  border-left-color: rgba(236, 168, 171, 0.2);
}

.hover\:border-secondary-darkest-20:hover{
  border-color: rgba(62, 69, 37, 0.2);
}

.hover\:border-t-secondary-darkest-20:hover{
  border-top-color: rgba(62, 69, 37, 0.2);
}

.hover\:border-r-secondary-darkest-20:hover{
  border-right-color: rgba(62, 69, 37, 0.2);
}

.hover\:border-b-secondary-darkest-20:hover{
  border-bottom-color: rgba(62, 69, 37, 0.2);
}

.hover\:border-l-secondary-darkest-20:hover{
  border-left-color: rgba(62, 69, 37, 0.2);
}

.hover\:border-secondary-darker-20:hover{
  border-color: rgba(94, 104, 55, 0.2);
}

.hover\:border-t-secondary-darker-20:hover{
  border-top-color: rgba(94, 104, 55, 0.2);
}

.hover\:border-r-secondary-darker-20:hover{
  border-right-color: rgba(94, 104, 55, 0.2);
}

.hover\:border-b-secondary-darker-20:hover{
  border-bottom-color: rgba(94, 104, 55, 0.2);
}

.hover\:border-l-secondary-darker-20:hover{
  border-left-color: rgba(94, 104, 55, 0.2);
}

.hover\:border-secondary-dark-20:hover{
  border-color: rgba(125, 138, 74, 0.2);
}

.hover\:border-t-secondary-dark-20:hover{
  border-top-color: rgba(125, 138, 74, 0.2);
}

.hover\:border-r-secondary-dark-20:hover{
  border-right-color: rgba(125, 138, 74, 0.2);
}

.hover\:border-b-secondary-dark-20:hover{
  border-bottom-color: rgba(125, 138, 74, 0.2);
}

.hover\:border-l-secondary-dark-20:hover{
  border-left-color: rgba(125, 138, 74, 0.2);
}

.hover\:border-secondary-20:hover{
  border-color: rgba(156, 173, 92, 0.2);
}

.hover\:border-t-secondary-20:hover{
  border-top-color: rgba(156, 173, 92, 0.2);
}

.hover\:border-r-secondary-20:hover{
  border-right-color: rgba(156, 173, 92, 0.2);
}

.hover\:border-b-secondary-20:hover{
  border-bottom-color: rgba(156, 173, 92, 0.2);
}

.hover\:border-l-secondary-20:hover{
  border-left-color: rgba(156, 173, 92, 0.2);
}

.hover\:border-secondary-light-20:hover{
  border-color: rgba(176, 189, 125, 0.2);
}

.hover\:border-t-secondary-light-20:hover{
  border-top-color: rgba(176, 189, 125, 0.2);
}

.hover\:border-r-secondary-light-20:hover{
  border-right-color: rgba(176, 189, 125, 0.2);
}

.hover\:border-b-secondary-light-20:hover{
  border-bottom-color: rgba(176, 189, 125, 0.2);
}

.hover\:border-l-secondary-light-20:hover{
  border-left-color: rgba(176, 189, 125, 0.2);
}

.hover\:border-secondary-lighter-20:hover{
  border-color: rgba(196, 206, 157, 0.2);
}

.hover\:border-t-secondary-lighter-20:hover{
  border-top-color: rgba(196, 206, 157, 0.2);
}

.hover\:border-r-secondary-lighter-20:hover{
  border-right-color: rgba(196, 206, 157, 0.2);
}

.hover\:border-b-secondary-lighter-20:hover{
  border-bottom-color: rgba(196, 206, 157, 0.2);
}

.hover\:border-l-secondary-lighter-20:hover{
  border-left-color: rgba(196, 206, 157, 0.2);
}

.hover\:border-secondary-lightest-20:hover{
  border-color: rgba(215, 222, 190, 0.2);
}

.hover\:border-t-secondary-lightest-20:hover{
  border-top-color: rgba(215, 222, 190, 0.2);
}

.hover\:border-r-secondary-lightest-20:hover{
  border-right-color: rgba(215, 222, 190, 0.2);
}

.hover\:border-b-secondary-lightest-20:hover{
  border-bottom-color: rgba(215, 222, 190, 0.2);
}

.hover\:border-l-secondary-lightest-20:hover{
  border-left-color: rgba(215, 222, 190, 0.2);
}

.hover\:border-tertiary-darkest-20:hover{
  border-color: rgba(15, 47, 33, 0.2);
}

.hover\:border-t-tertiary-darkest-20:hover{
  border-top-color: rgba(15, 47, 33, 0.2);
}

.hover\:border-r-tertiary-darkest-20:hover{
  border-right-color: rgba(15, 47, 33, 0.2);
}

.hover\:border-b-tertiary-darkest-20:hover{
  border-bottom-color: rgba(15, 47, 33, 0.2);
}

.hover\:border-l-tertiary-darkest-20:hover{
  border-left-color: rgba(15, 47, 33, 0.2);
}

.hover\:border-tertiary-darker-20:hover{
  border-color: rgba(26, 71, 49, 0.2);
}

.hover\:border-t-tertiary-darker-20:hover{
  border-top-color: rgba(26, 71, 49, 0.2);
}

.hover\:border-r-tertiary-darker-20:hover{
  border-right-color: rgba(26, 71, 49, 0.2);
}

.hover\:border-b-tertiary-darker-20:hover{
  border-bottom-color: rgba(26, 71, 49, 0.2);
}

.hover\:border-l-tertiary-darker-20:hover{
  border-left-color: rgba(26, 71, 49, 0.2);
}

.hover\:border-tertiary-dark-20:hover{
  border-color: rgba(31, 157, 85, 0.2);
}

.hover\:border-t-tertiary-dark-20:hover{
  border-top-color: rgba(31, 157, 85, 0.2);
}

.hover\:border-r-tertiary-dark-20:hover{
  border-right-color: rgba(31, 157, 85, 0.2);
}

.hover\:border-b-tertiary-dark-20:hover{
  border-bottom-color: rgba(31, 157, 85, 0.2);
}

.hover\:border-l-tertiary-dark-20:hover{
  border-left-color: rgba(31, 157, 85, 0.2);
}

.hover\:border-tertiary-20:hover{
  border-color: rgba(255, 197, 0, 0.2);
}

.hover\:border-t-tertiary-20:hover{
  border-top-color: rgba(255, 197, 0, 0.2);
}

.hover\:border-r-tertiary-20:hover{
  border-right-color: rgba(255, 197, 0, 0.2);
}

.hover\:border-b-tertiary-20:hover{
  border-bottom-color: rgba(255, 197, 0, 0.2);
}

.hover\:border-l-tertiary-20:hover{
  border-left-color: rgba(255, 197, 0, 0.2);
}

.hover\:border-tertiary-light-20:hover{
  border-color: rgba(81, 216, 138, 0.2);
}

.hover\:border-t-tertiary-light-20:hover{
  border-top-color: rgba(81, 216, 138, 0.2);
}

.hover\:border-r-tertiary-light-20:hover{
  border-right-color: rgba(81, 216, 138, 0.2);
}

.hover\:border-b-tertiary-light-20:hover{
  border-bottom-color: rgba(81, 216, 138, 0.2);
}

.hover\:border-l-tertiary-light-20:hover{
  border-left-color: rgba(81, 216, 138, 0.2);
}

.hover\:border-tertiary-lighter-20:hover{
  border-color: rgba(162, 245, 191, 0.2);
}

.hover\:border-t-tertiary-lighter-20:hover{
  border-top-color: rgba(162, 245, 191, 0.2);
}

.hover\:border-r-tertiary-lighter-20:hover{
  border-right-color: rgba(162, 245, 191, 0.2);
}

.hover\:border-b-tertiary-lighter-20:hover{
  border-bottom-color: rgba(162, 245, 191, 0.2);
}

.hover\:border-l-tertiary-lighter-20:hover{
  border-left-color: rgba(162, 245, 191, 0.2);
}

.hover\:border-tertiary-lightest-20:hover{
  border-color: rgba(227, 252, 236, 0.2);
}

.hover\:border-t-tertiary-lightest-20:hover{
  border-top-color: rgba(227, 252, 236, 0.2);
}

.hover\:border-r-tertiary-lightest-20:hover{
  border-right-color: rgba(227, 252, 236, 0.2);
}

.hover\:border-b-tertiary-lightest-20:hover{
  border-bottom-color: rgba(227, 252, 236, 0.2);
}

.hover\:border-l-tertiary-lightest-20:hover{
  border-left-color: rgba(227, 252, 236, 0.2);
}

.hover\:border-default-20:hover{
  border-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-t-default-20:hover{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-r-default-20:hover{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-b-default-20:hover{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.hover\:border-l-default-20:hover{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-border-20:focus{
  border-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-t-border-20:focus{
  border-top-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-r-border-20:focus{
  border-right-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-b-border-20:focus{
  border-bottom-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-l-border-20:focus{
  border-left-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-form-20:focus{
  border-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-t-form-20:focus{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-r-form-20:focus{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-b-form-20:focus{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-l-form-20:focus{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-form-active-20:focus{
  border-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-t-form-active-20:focus{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-r-form-active-20:focus{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-b-form-active-20:focus{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-l-form-active-20:focus{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-black-20:focus{
  border-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-t-black-20:focus{
  border-top-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-r-black-20:focus{
  border-right-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-b-black-20:focus{
  border-bottom-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-l-black-20:focus{
  border-left-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-grey-darkest-20:focus{
  border-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-t-grey-darkest-20:focus{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-r-grey-darkest-20:focus{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-b-grey-darkest-20:focus{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-l-grey-darkest-20:focus{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-grey-darker-20:focus{
  border-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-t-grey-darker-20:focus{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-r-grey-darker-20:focus{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-b-grey-darker-20:focus{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-l-grey-darker-20:focus{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-grey-dark-20:focus{
  border-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-t-grey-dark-20:focus{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-r-grey-dark-20:focus{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-b-grey-dark-20:focus{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-l-grey-dark-20:focus{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-grey-20:focus{
  border-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-t-grey-20:focus{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-r-grey-20:focus{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-b-grey-20:focus{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-l-grey-20:focus{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-grey-light-20:focus{
  border-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-t-grey-light-20:focus{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-r-grey-light-20:focus{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-b-grey-light-20:focus{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-l-grey-light-20:focus{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-grey-lighter-20:focus{
  border-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-t-grey-lighter-20:focus{
  border-top-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-r-grey-lighter-20:focus{
  border-right-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-b-grey-lighter-20:focus{
  border-bottom-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-l-grey-lighter-20:focus{
  border-left-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-grey-lightest-20:focus{
  border-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-t-grey-lightest-20:focus{
  border-top-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-r-grey-lightest-20:focus{
  border-right-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-b-grey-lightest-20:focus{
  border-bottom-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-l-grey-lightest-20:focus{
  border-left-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-white-20:focus{
  border-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-t-white-20:focus{
  border-top-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-r-white-20:focus{
  border-right-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-b-white-20:focus{
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-l-white-20:focus{
  border-left-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-red-20:focus{
  border-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-t-red-20:focus{
  border-top-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-r-red-20:focus{
  border-right-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-b-red-20:focus{
  border-bottom-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-l-red-20:focus{
  border-left-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-green-20:focus{
  border-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-t-green-20:focus{
  border-top-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-r-green-20:focus{
  border-right-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-b-green-20:focus{
  border-bottom-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-l-green-20:focus{
  border-left-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-blue-20:focus{
  border-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-t-blue-20:focus{
  border-top-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-r-blue-20:focus{
  border-right-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-b-blue-20:focus{
  border-bottom-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-l-blue-20:focus{
  border-left-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-orange-20:focus{
  border-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-t-orange-20:focus{
  border-top-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-r-orange-20:focus{
  border-right-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-b-orange-20:focus{
  border-bottom-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-l-orange-20:focus{
  border-left-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-primary-darkest-20:focus{
  border-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-t-primary-darkest-20:focus{
  border-top-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-r-primary-darkest-20:focus{
  border-right-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-b-primary-darkest-20:focus{
  border-bottom-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-l-primary-darkest-20:focus{
  border-left-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-primary-darker-20:focus{
  border-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-t-primary-darker-20:focus{
  border-top-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-r-primary-darker-20:focus{
  border-right-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-b-primary-darker-20:focus{
  border-bottom-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-l-primary-darker-20:focus{
  border-left-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-primary-dark-20:focus{
  border-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-t-primary-dark-20:focus{
  border-top-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-r-primary-dark-20:focus{
  border-right-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-b-primary-dark-20:focus{
  border-bottom-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-l-primary-dark-20:focus{
  border-left-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-primary-20:focus{
  border-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-t-primary-20:focus{
  border-top-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-r-primary-20:focus{
  border-right-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-b-primary-20:focus{
  border-bottom-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-l-primary-20:focus{
  border-left-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-primary-light-20:focus{
  border-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-t-primary-light-20:focus{
  border-top-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-r-primary-light-20:focus{
  border-right-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-b-primary-light-20:focus{
  border-bottom-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-l-primary-light-20:focus{
  border-left-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-primary-lighter-20:focus{
  border-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-t-primary-lighter-20:focus{
  border-top-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-r-primary-lighter-20:focus{
  border-right-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-b-primary-lighter-20:focus{
  border-bottom-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-l-primary-lighter-20:focus{
  border-left-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-primary-lightest-20:focus{
  border-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-t-primary-lightest-20:focus{
  border-top-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-r-primary-lightest-20:focus{
  border-right-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-b-primary-lightest-20:focus{
  border-bottom-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-l-primary-lightest-20:focus{
  border-left-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-secondary-darkest-20:focus{
  border-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-t-secondary-darkest-20:focus{
  border-top-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-r-secondary-darkest-20:focus{
  border-right-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-b-secondary-darkest-20:focus{
  border-bottom-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-l-secondary-darkest-20:focus{
  border-left-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-secondary-darker-20:focus{
  border-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-t-secondary-darker-20:focus{
  border-top-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-r-secondary-darker-20:focus{
  border-right-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-b-secondary-darker-20:focus{
  border-bottom-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-l-secondary-darker-20:focus{
  border-left-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-secondary-dark-20:focus{
  border-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-t-secondary-dark-20:focus{
  border-top-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-r-secondary-dark-20:focus{
  border-right-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-b-secondary-dark-20:focus{
  border-bottom-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-l-secondary-dark-20:focus{
  border-left-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-secondary-20:focus{
  border-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-t-secondary-20:focus{
  border-top-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-r-secondary-20:focus{
  border-right-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-b-secondary-20:focus{
  border-bottom-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-l-secondary-20:focus{
  border-left-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-secondary-light-20:focus{
  border-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-t-secondary-light-20:focus{
  border-top-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-r-secondary-light-20:focus{
  border-right-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-b-secondary-light-20:focus{
  border-bottom-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-l-secondary-light-20:focus{
  border-left-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-secondary-lighter-20:focus{
  border-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-t-secondary-lighter-20:focus{
  border-top-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-r-secondary-lighter-20:focus{
  border-right-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-b-secondary-lighter-20:focus{
  border-bottom-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-l-secondary-lighter-20:focus{
  border-left-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-secondary-lightest-20:focus{
  border-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-t-secondary-lightest-20:focus{
  border-top-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-r-secondary-lightest-20:focus{
  border-right-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-b-secondary-lightest-20:focus{
  border-bottom-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-l-secondary-lightest-20:focus{
  border-left-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-tertiary-darkest-20:focus{
  border-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-t-tertiary-darkest-20:focus{
  border-top-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-r-tertiary-darkest-20:focus{
  border-right-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-b-tertiary-darkest-20:focus{
  border-bottom-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-l-tertiary-darkest-20:focus{
  border-left-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-tertiary-darker-20:focus{
  border-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-t-tertiary-darker-20:focus{
  border-top-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-r-tertiary-darker-20:focus{
  border-right-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-b-tertiary-darker-20:focus{
  border-bottom-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-l-tertiary-darker-20:focus{
  border-left-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-tertiary-dark-20:focus{
  border-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-t-tertiary-dark-20:focus{
  border-top-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-r-tertiary-dark-20:focus{
  border-right-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-b-tertiary-dark-20:focus{
  border-bottom-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-l-tertiary-dark-20:focus{
  border-left-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-tertiary-20:focus{
  border-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-t-tertiary-20:focus{
  border-top-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-r-tertiary-20:focus{
  border-right-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-b-tertiary-20:focus{
  border-bottom-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-l-tertiary-20:focus{
  border-left-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-tertiary-light-20:focus{
  border-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-t-tertiary-light-20:focus{
  border-top-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-r-tertiary-light-20:focus{
  border-right-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-b-tertiary-light-20:focus{
  border-bottom-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-l-tertiary-light-20:focus{
  border-left-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-tertiary-lighter-20:focus{
  border-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-t-tertiary-lighter-20:focus{
  border-top-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-r-tertiary-lighter-20:focus{
  border-right-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-b-tertiary-lighter-20:focus{
  border-bottom-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-l-tertiary-lighter-20:focus{
  border-left-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-tertiary-lightest-20:focus{
  border-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-t-tertiary-lightest-20:focus{
  border-top-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-r-tertiary-lightest-20:focus{
  border-right-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-b-tertiary-lightest-20:focus{
  border-bottom-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-l-tertiary-lightest-20:focus{
  border-left-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-default-20:focus{
  border-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-t-default-20:focus{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-r-default-20:focus{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-b-default-20:focus{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-l-default-20:focus{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-border-20:focus{
  border-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-t-border-20:focus{
  border-top-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-r-border-20:focus{
  border-right-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-b-border-20:focus{
  border-bottom-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-l-border-20:focus{
  border-left-color: rgba(230, 235, 245, 0.2);
}

.focus\:border-form-20:focus{
  border-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-t-form-20:focus{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-r-form-20:focus{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-b-form-20:focus{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-l-form-20:focus{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-form-active-20:focus{
  border-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-t-form-active-20:focus{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-r-form-active-20:focus{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-b-form-active-20:focus{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-l-form-active-20:focus{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-black-20:focus{
  border-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-t-black-20:focus{
  border-top-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-r-black-20:focus{
  border-right-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-b-black-20:focus{
  border-bottom-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-l-black-20:focus{
  border-left-color: rgba(33, 37, 41, 0.2);
}

.focus\:border-grey-darkest-20:focus{
  border-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-t-grey-darkest-20:focus{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-r-grey-darkest-20:focus{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-b-grey-darkest-20:focus{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-l-grey-darkest-20:focus{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-grey-darker-20:focus{
  border-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-t-grey-darker-20:focus{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-r-grey-darker-20:focus{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-b-grey-darker-20:focus{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-l-grey-darker-20:focus{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.focus\:border-grey-dark-20:focus{
  border-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-t-grey-dark-20:focus{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-r-grey-dark-20:focus{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-b-grey-dark-20:focus{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-l-grey-dark-20:focus{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.focus\:border-grey-20:focus{
  border-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-t-grey-20:focus{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-r-grey-20:focus{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-b-grey-20:focus{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-l-grey-20:focus{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.focus\:border-grey-light-20:focus{
  border-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-t-grey-light-20:focus{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-r-grey-light-20:focus{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-b-grey-light-20:focus{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-l-grey-light-20:focus{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-grey-lighter-20:focus{
  border-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-t-grey-lighter-20:focus{
  border-top-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-r-grey-lighter-20:focus{
  border-right-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-b-grey-lighter-20:focus{
  border-bottom-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-l-grey-lighter-20:focus{
  border-left-color: rgba(222, 228, 233, 0.2);
}

.focus\:border-grey-lightest-20:focus{
  border-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-t-grey-lightest-20:focus{
  border-top-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-r-grey-lightest-20:focus{
  border-right-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-b-grey-lightest-20:focus{
  border-bottom-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-l-grey-lightest-20:focus{
  border-left-color: rgba(244, 246, 249, 0.2);
}

.focus\:border-white-20:focus{
  border-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-t-white-20:focus{
  border-top-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-r-white-20:focus{
  border-right-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-b-white-20:focus{
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-l-white-20:focus{
  border-left-color: rgba(255, 255, 255, 0.2);
}

.focus\:border-red-20:focus{
  border-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-t-red-20:focus{
  border-top-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-r-red-20:focus{
  border-right-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-b-red-20:focus{
  border-bottom-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-l-red-20:focus{
  border-left-color: rgba(211, 26, 8, 0.2);
}

.focus\:border-green-20:focus{
  border-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-t-green-20:focus{
  border-top-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-r-green-20:focus{
  border-right-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-b-green-20:focus{
  border-bottom-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-l-green-20:focus{
  border-left-color: rgba(102, 187, 8, 0.2);
}

.focus\:border-blue-20:focus{
  border-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-t-blue-20:focus{
  border-top-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-r-blue-20:focus{
  border-right-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-b-blue-20:focus{
  border-bottom-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-l-blue-20:focus{
  border-left-color: rgba(31, 168, 226, 0.2);
}

.focus\:border-orange-20:focus{
  border-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-t-orange-20:focus{
  border-top-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-r-orange-20:focus{
  border-right-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-b-orange-20:focus{
  border-bottom-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-l-orange-20:focus{
  border-left-color: rgba(247, 148, 14, 0.2);
}

.focus\:border-primary-darkest-20:focus{
  border-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-t-primary-darkest-20:focus{
  border-top-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-r-primary-darkest-20:focus{
  border-right-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-b-primary-darkest-20:focus{
  border-bottom-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-l-primary-darkest-20:focus{
  border-left-color: rgba(83, 15, 18, 0.2);
}

.focus\:border-primary-darker-20:focus{
  border-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-t-primary-darker-20:focus{
  border-top-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-r-primary-darker-20:focus{
  border-right-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-b-primary-darker-20:focus{
  border-bottom-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-l-primary-darker-20:focus{
  border-left-color: rgba(124, 23, 27, 0.2);
}

.focus\:border-primary-dark-20:focus{
  border-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-t-primary-dark-20:focus{
  border-top-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-r-primary-dark-20:focus{
  border-right-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-b-primary-dark-20:focus{
  border-bottom-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-l-primary-dark-20:focus{
  border-left-color: rgba(166, 30, 36, 0.2);
}

.focus\:border-primary-20:focus{
  border-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-t-primary-20:focus{
  border-top-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-r-primary-20:focus{
  border-right-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-b-primary-20:focus{
  border-bottom-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-l-primary-20:focus{
  border-left-color: rgba(207, 38, 45, 0.2);
}

.focus\:border-primary-light-20:focus{
  border-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-t-primary-light-20:focus{
  border-top-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-r-primary-light-20:focus{
  border-right-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-b-primary-light-20:focus{
  border-bottom-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-l-primary-light-20:focus{
  border-left-color: rgba(217, 81, 87, 0.2);
}

.focus\:border-primary-lighter-20:focus{
  border-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-t-primary-lighter-20:focus{
  border-top-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-r-primary-lighter-20:focus{
  border-right-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-b-primary-lighter-20:focus{
  border-bottom-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-l-primary-lighter-20:focus{
  border-left-color: rgba(226, 125, 129, 0.2);
}

.focus\:border-primary-lightest-20:focus{
  border-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-t-primary-lightest-20:focus{
  border-top-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-r-primary-lightest-20:focus{
  border-right-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-b-primary-lightest-20:focus{
  border-bottom-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-l-primary-lightest-20:focus{
  border-left-color: rgba(236, 168, 171, 0.2);
}

.focus\:border-secondary-darkest-20:focus{
  border-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-t-secondary-darkest-20:focus{
  border-top-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-r-secondary-darkest-20:focus{
  border-right-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-b-secondary-darkest-20:focus{
  border-bottom-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-l-secondary-darkest-20:focus{
  border-left-color: rgba(62, 69, 37, 0.2);
}

.focus\:border-secondary-darker-20:focus{
  border-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-t-secondary-darker-20:focus{
  border-top-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-r-secondary-darker-20:focus{
  border-right-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-b-secondary-darker-20:focus{
  border-bottom-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-l-secondary-darker-20:focus{
  border-left-color: rgba(94, 104, 55, 0.2);
}

.focus\:border-secondary-dark-20:focus{
  border-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-t-secondary-dark-20:focus{
  border-top-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-r-secondary-dark-20:focus{
  border-right-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-b-secondary-dark-20:focus{
  border-bottom-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-l-secondary-dark-20:focus{
  border-left-color: rgba(125, 138, 74, 0.2);
}

.focus\:border-secondary-20:focus{
  border-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-t-secondary-20:focus{
  border-top-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-r-secondary-20:focus{
  border-right-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-b-secondary-20:focus{
  border-bottom-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-l-secondary-20:focus{
  border-left-color: rgba(156, 173, 92, 0.2);
}

.focus\:border-secondary-light-20:focus{
  border-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-t-secondary-light-20:focus{
  border-top-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-r-secondary-light-20:focus{
  border-right-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-b-secondary-light-20:focus{
  border-bottom-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-l-secondary-light-20:focus{
  border-left-color: rgba(176, 189, 125, 0.2);
}

.focus\:border-secondary-lighter-20:focus{
  border-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-t-secondary-lighter-20:focus{
  border-top-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-r-secondary-lighter-20:focus{
  border-right-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-b-secondary-lighter-20:focus{
  border-bottom-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-l-secondary-lighter-20:focus{
  border-left-color: rgba(196, 206, 157, 0.2);
}

.focus\:border-secondary-lightest-20:focus{
  border-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-t-secondary-lightest-20:focus{
  border-top-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-r-secondary-lightest-20:focus{
  border-right-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-b-secondary-lightest-20:focus{
  border-bottom-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-l-secondary-lightest-20:focus{
  border-left-color: rgba(215, 222, 190, 0.2);
}

.focus\:border-tertiary-darkest-20:focus{
  border-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-t-tertiary-darkest-20:focus{
  border-top-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-r-tertiary-darkest-20:focus{
  border-right-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-b-tertiary-darkest-20:focus{
  border-bottom-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-l-tertiary-darkest-20:focus{
  border-left-color: rgba(15, 47, 33, 0.2);
}

.focus\:border-tertiary-darker-20:focus{
  border-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-t-tertiary-darker-20:focus{
  border-top-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-r-tertiary-darker-20:focus{
  border-right-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-b-tertiary-darker-20:focus{
  border-bottom-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-l-tertiary-darker-20:focus{
  border-left-color: rgba(26, 71, 49, 0.2);
}

.focus\:border-tertiary-dark-20:focus{
  border-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-t-tertiary-dark-20:focus{
  border-top-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-r-tertiary-dark-20:focus{
  border-right-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-b-tertiary-dark-20:focus{
  border-bottom-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-l-tertiary-dark-20:focus{
  border-left-color: rgba(31, 157, 85, 0.2);
}

.focus\:border-tertiary-20:focus{
  border-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-t-tertiary-20:focus{
  border-top-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-r-tertiary-20:focus{
  border-right-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-b-tertiary-20:focus{
  border-bottom-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-l-tertiary-20:focus{
  border-left-color: rgba(255, 197, 0, 0.2);
}

.focus\:border-tertiary-light-20:focus{
  border-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-t-tertiary-light-20:focus{
  border-top-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-r-tertiary-light-20:focus{
  border-right-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-b-tertiary-light-20:focus{
  border-bottom-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-l-tertiary-light-20:focus{
  border-left-color: rgba(81, 216, 138, 0.2);
}

.focus\:border-tertiary-lighter-20:focus{
  border-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-t-tertiary-lighter-20:focus{
  border-top-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-r-tertiary-lighter-20:focus{
  border-right-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-b-tertiary-lighter-20:focus{
  border-bottom-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-l-tertiary-lighter-20:focus{
  border-left-color: rgba(162, 245, 191, 0.2);
}

.focus\:border-tertiary-lightest-20:focus{
  border-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-t-tertiary-lightest-20:focus{
  border-top-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-r-tertiary-lightest-20:focus{
  border-right-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-b-tertiary-lightest-20:focus{
  border-bottom-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-l-tertiary-lightest-20:focus{
  border-left-color: rgba(227, 252, 236, 0.2);
}

.focus\:border-default-20:focus{
  border-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-t-default-20:focus{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-r-default-20:focus{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-b-default-20:focus{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.focus\:border-l-default-20:focus{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-border-20{
  border-color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:border-t-border-20{
  border-top-color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:border-r-border-20{
  border-right-color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:border-b-border-20{
  border-bottom-color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:border-l-border-20{
  border-left-color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:border-form-20{
  border-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-t-form-20{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-r-form-20{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-b-form-20{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-l-form-20{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-form-active-20{
  border-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-t-form-active-20{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-r-form-active-20{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-b-form-active-20{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-l-form-active-20{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-black-20{
  border-color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:border-t-black-20{
  border-top-color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:border-r-black-20{
  border-right-color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:border-b-black-20{
  border-bottom-color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:border-l-black-20{
  border-left-color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:border-grey-darkest-20{
  border-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-t-grey-darkest-20{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-r-grey-darkest-20{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-b-grey-darkest-20{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-l-grey-darkest-20{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-grey-darker-20{
  border-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-t-grey-darker-20{
  border-top-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-r-grey-darker-20{
  border-right-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-b-grey-darker-20{
  border-bottom-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-l-grey-darker-20{
  border-left-color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:border-grey-dark-20{
  border-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-t-grey-dark-20{
  border-top-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-r-grey-dark-20{
  border-right-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-b-grey-dark-20{
  border-bottom-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-l-grey-dark-20{
  border-left-color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:border-grey-20{
  border-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-t-grey-20{
  border-top-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-r-grey-20{
  border-right-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-b-grey-20{
  border-bottom-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-l-grey-20{
  border-left-color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:border-grey-light-20{
  border-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-t-grey-light-20{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-r-grey-light-20{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-b-grey-light-20{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-l-grey-light-20{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-grey-lighter-20{
  border-color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:border-t-grey-lighter-20{
  border-top-color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:border-r-grey-lighter-20{
  border-right-color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:border-b-grey-lighter-20{
  border-bottom-color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:border-l-grey-lighter-20{
  border-left-color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:border-grey-lightest-20{
  border-color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:border-t-grey-lightest-20{
  border-top-color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:border-r-grey-lightest-20{
  border-right-color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:border-b-grey-lightest-20{
  border-bottom-color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:border-l-grey-lightest-20{
  border-left-color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:border-white-20{
  border-color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:border-t-white-20{
  border-top-color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:border-r-white-20{
  border-right-color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:border-b-white-20{
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:border-l-white-20{
  border-left-color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:border-red-20{
  border-color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:border-t-red-20{
  border-top-color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:border-r-red-20{
  border-right-color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:border-b-red-20{
  border-bottom-color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:border-l-red-20{
  border-left-color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:border-green-20{
  border-color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:border-t-green-20{
  border-top-color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:border-r-green-20{
  border-right-color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:border-b-green-20{
  border-bottom-color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:border-l-green-20{
  border-left-color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:border-blue-20{
  border-color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:border-t-blue-20{
  border-top-color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:border-r-blue-20{
  border-right-color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:border-b-blue-20{
  border-bottom-color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:border-l-blue-20{
  border-left-color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:border-orange-20{
  border-color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:border-t-orange-20{
  border-top-color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:border-r-orange-20{
  border-right-color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:border-b-orange-20{
  border-bottom-color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:border-l-orange-20{
  border-left-color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:border-primary-darkest-20{
  border-color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:border-t-primary-darkest-20{
  border-top-color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:border-r-primary-darkest-20{
  border-right-color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:border-b-primary-darkest-20{
  border-bottom-color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:border-l-primary-darkest-20{
  border-left-color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:border-primary-darker-20{
  border-color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:border-t-primary-darker-20{
  border-top-color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:border-r-primary-darker-20{
  border-right-color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:border-b-primary-darker-20{
  border-bottom-color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:border-l-primary-darker-20{
  border-left-color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:border-primary-dark-20{
  border-color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:border-t-primary-dark-20{
  border-top-color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:border-r-primary-dark-20{
  border-right-color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:border-b-primary-dark-20{
  border-bottom-color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:border-l-primary-dark-20{
  border-left-color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:border-primary-20{
  border-color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:border-t-primary-20{
  border-top-color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:border-r-primary-20{
  border-right-color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:border-b-primary-20{
  border-bottom-color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:border-l-primary-20{
  border-left-color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:border-primary-light-20{
  border-color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:border-t-primary-light-20{
  border-top-color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:border-r-primary-light-20{
  border-right-color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:border-b-primary-light-20{
  border-bottom-color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:border-l-primary-light-20{
  border-left-color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:border-primary-lighter-20{
  border-color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:border-t-primary-lighter-20{
  border-top-color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:border-r-primary-lighter-20{
  border-right-color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:border-b-primary-lighter-20{
  border-bottom-color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:border-l-primary-lighter-20{
  border-left-color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:border-primary-lightest-20{
  border-color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:border-t-primary-lightest-20{
  border-top-color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:border-r-primary-lightest-20{
  border-right-color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:border-b-primary-lightest-20{
  border-bottom-color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:border-l-primary-lightest-20{
  border-left-color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:border-secondary-darkest-20{
  border-color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:border-t-secondary-darkest-20{
  border-top-color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:border-r-secondary-darkest-20{
  border-right-color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:border-b-secondary-darkest-20{
  border-bottom-color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:border-l-secondary-darkest-20{
  border-left-color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:border-secondary-darker-20{
  border-color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:border-t-secondary-darker-20{
  border-top-color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:border-r-secondary-darker-20{
  border-right-color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:border-b-secondary-darker-20{
  border-bottom-color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:border-l-secondary-darker-20{
  border-left-color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:border-secondary-dark-20{
  border-color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:border-t-secondary-dark-20{
  border-top-color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:border-r-secondary-dark-20{
  border-right-color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:border-b-secondary-dark-20{
  border-bottom-color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:border-l-secondary-dark-20{
  border-left-color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:border-secondary-20{
  border-color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:border-t-secondary-20{
  border-top-color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:border-r-secondary-20{
  border-right-color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:border-b-secondary-20{
  border-bottom-color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:border-l-secondary-20{
  border-left-color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:border-secondary-light-20{
  border-color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:border-t-secondary-light-20{
  border-top-color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:border-r-secondary-light-20{
  border-right-color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:border-b-secondary-light-20{
  border-bottom-color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:border-l-secondary-light-20{
  border-left-color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:border-secondary-lighter-20{
  border-color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:border-t-secondary-lighter-20{
  border-top-color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:border-r-secondary-lighter-20{
  border-right-color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:border-b-secondary-lighter-20{
  border-bottom-color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:border-l-secondary-lighter-20{
  border-left-color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:border-secondary-lightest-20{
  border-color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:border-t-secondary-lightest-20{
  border-top-color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:border-r-secondary-lightest-20{
  border-right-color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:border-b-secondary-lightest-20{
  border-bottom-color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:border-l-secondary-lightest-20{
  border-left-color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:border-tertiary-darkest-20{
  border-color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-darkest-20{
  border-top-color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-darkest-20{
  border-right-color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-darkest-20{
  border-bottom-color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-darkest-20{
  border-left-color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:border-tertiary-darker-20{
  border-color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-darker-20{
  border-top-color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-darker-20{
  border-right-color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-darker-20{
  border-bottom-color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-darker-20{
  border-left-color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:border-tertiary-dark-20{
  border-color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-dark-20{
  border-top-color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-dark-20{
  border-right-color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-dark-20{
  border-bottom-color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-dark-20{
  border-left-color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:border-tertiary-20{
  border-color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-20{
  border-top-color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-20{
  border-right-color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-20{
  border-bottom-color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-20{
  border-left-color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:border-tertiary-light-20{
  border-color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-light-20{
  border-top-color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-light-20{
  border-right-color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-light-20{
  border-bottom-color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-light-20{
  border-left-color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:border-tertiary-lighter-20{
  border-color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-lighter-20{
  border-top-color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-lighter-20{
  border-right-color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-lighter-20{
  border-bottom-color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-lighter-20{
  border-left-color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:border-tertiary-lightest-20{
  border-color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:border-t-tertiary-lightest-20{
  border-top-color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:border-r-tertiary-lightest-20{
  border-right-color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:border-b-tertiary-lightest-20{
  border-bottom-color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:border-l-tertiary-lightest-20{
  border-left-color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:border-default-20{
  border-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-t-default-20{
  border-top-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-r-default-20{
  border-right-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-b-default-20{
  border-bottom-color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:border-l-default-20{
  border-left-color: rgba(179, 188, 197, 0.2);
}

.text-border-20{
  color: rgba(230, 235, 245, 0.2);
}

.text-form-20{
  color: rgba(121, 130, 139, 0.2);
}

.text-form-active-20{
  color: rgba(66, 80, 92, 0.2);
}

.text-black-20{
  color: rgba(33, 37, 41, 0.2);
}

.text-grey-darkest-20{
  color: rgba(154, 165, 192, 0.2);
}

.text-grey-darker-20{
  color: rgba(154, 165, 192, 0.2);
}

.text-grey-dark-20{
  color: rgba(66, 80, 92, 0.2);
}

.text-grey-20{
  color: rgba(121, 130, 139, 0.2);
}

.text-grey-light-20{
  color: rgba(179, 188, 197, 0.2);
}

.text-grey-lighter-20{
  color: rgba(222, 228, 233, 0.2);
}

.text-grey-lightest-20{
  color: rgba(244, 246, 249, 0.2);
}

.text-white-20{
  color: rgba(255, 255, 255, 0.2);
}

.text-red-20{
  color: rgba(211, 26, 8, 0.2);
}

.text-green-20{
  color: rgba(102, 187, 8, 0.2);
}

.text-blue-20{
  color: rgba(31, 168, 226, 0.2);
}

.text-orange-20{
  color: rgba(247, 148, 14, 0.2);
}

.text-primary-darkest-20{
  color: rgba(83, 15, 18, 0.2);
}

.text-primary-darker-20{
  color: rgba(124, 23, 27, 0.2);
}

.text-primary-dark-20{
  color: rgba(166, 30, 36, 0.2);
}

.text-primary-20{
  color: rgba(207, 38, 45, 0.2);
}

.text-primary-light-20{
  color: rgba(217, 81, 87, 0.2);
}

.text-primary-lighter-20{
  color: rgba(226, 125, 129, 0.2);
}

.text-primary-lightest-20{
  color: rgba(236, 168, 171, 0.2);
}

.text-secondary-darkest-20{
  color: rgba(62, 69, 37, 0.2);
}

.text-secondary-darker-20{
  color: rgba(94, 104, 55, 0.2);
}

.text-secondary-dark-20{
  color: rgba(125, 138, 74, 0.2);
}

.text-secondary-20{
  color: rgba(156, 173, 92, 0.2);
}

.text-secondary-light-20{
  color: rgba(176, 189, 125, 0.2);
}

.text-secondary-lighter-20{
  color: rgba(196, 206, 157, 0.2);
}

.text-secondary-lightest-20{
  color: rgba(215, 222, 190, 0.2);
}

.text-tertiary-darkest-20{
  color: rgba(15, 47, 33, 0.2);
}

.text-tertiary-darker-20{
  color: rgba(26, 71, 49, 0.2);
}

.text-tertiary-dark-20{
  color: rgba(31, 157, 85, 0.2);
}

.text-tertiary-20{
  color: rgba(255, 197, 0, 0.2);
}

.text-tertiary-light-20{
  color: rgba(81, 216, 138, 0.2);
}

.text-tertiary-lighter-20{
  color: rgba(162, 245, 191, 0.2);
}

.text-tertiary-lightest-20{
  color: rgba(227, 252, 236, 0.2);
}

.hover\:text-border-20:hover{
  color: rgba(230, 235, 245, 0.2);
}

.hover\:text-form-20:hover{
  color: rgba(121, 130, 139, 0.2);
}

.hover\:text-form-active-20:hover{
  color: rgba(66, 80, 92, 0.2);
}

.hover\:text-black-20:hover{
  color: rgba(33, 37, 41, 0.2);
}

.hover\:text-grey-darkest-20:hover{
  color: rgba(154, 165, 192, 0.2);
}

.hover\:text-grey-darker-20:hover{
  color: rgba(154, 165, 192, 0.2);
}

.hover\:text-grey-dark-20:hover{
  color: rgba(66, 80, 92, 0.2);
}

.hover\:text-grey-20:hover{
  color: rgba(121, 130, 139, 0.2);
}

.hover\:text-grey-light-20:hover{
  color: rgba(179, 188, 197, 0.2);
}

.hover\:text-grey-lighter-20:hover{
  color: rgba(222, 228, 233, 0.2);
}

.hover\:text-grey-lightest-20:hover{
  color: rgba(244, 246, 249, 0.2);
}

.hover\:text-white-20:hover{
  color: rgba(255, 255, 255, 0.2);
}

.hover\:text-red-20:hover{
  color: rgba(211, 26, 8, 0.2);
}

.hover\:text-green-20:hover{
  color: rgba(102, 187, 8, 0.2);
}

.hover\:text-blue-20:hover{
  color: rgba(31, 168, 226, 0.2);
}

.hover\:text-orange-20:hover{
  color: rgba(247, 148, 14, 0.2);
}

.hover\:text-primary-darkest-20:hover{
  color: rgba(83, 15, 18, 0.2);
}

.hover\:text-primary-darker-20:hover{
  color: rgba(124, 23, 27, 0.2);
}

.hover\:text-primary-dark-20:hover{
  color: rgba(166, 30, 36, 0.2);
}

.hover\:text-primary-20:hover{
  color: rgba(207, 38, 45, 0.2);
}

.hover\:text-primary-light-20:hover{
  color: rgba(217, 81, 87, 0.2);
}

.hover\:text-primary-lighter-20:hover{
  color: rgba(226, 125, 129, 0.2);
}

.hover\:text-primary-lightest-20:hover{
  color: rgba(236, 168, 171, 0.2);
}

.hover\:text-secondary-darkest-20:hover{
  color: rgba(62, 69, 37, 0.2);
}

.hover\:text-secondary-darker-20:hover{
  color: rgba(94, 104, 55, 0.2);
}

.hover\:text-secondary-dark-20:hover{
  color: rgba(125, 138, 74, 0.2);
}

.hover\:text-secondary-20:hover{
  color: rgba(156, 173, 92, 0.2);
}

.hover\:text-secondary-light-20:hover{
  color: rgba(176, 189, 125, 0.2);
}

.hover\:text-secondary-lighter-20:hover{
  color: rgba(196, 206, 157, 0.2);
}

.hover\:text-secondary-lightest-20:hover{
  color: rgba(215, 222, 190, 0.2);
}

.hover\:text-tertiary-darkest-20:hover{
  color: rgba(15, 47, 33, 0.2);
}

.hover\:text-tertiary-darker-20:hover{
  color: rgba(26, 71, 49, 0.2);
}

.hover\:text-tertiary-dark-20:hover{
  color: rgba(31, 157, 85, 0.2);
}

.hover\:text-tertiary-20:hover{
  color: rgba(255, 197, 0, 0.2);
}

.hover\:text-tertiary-light-20:hover{
  color: rgba(81, 216, 138, 0.2);
}

.hover\:text-tertiary-lighter-20:hover{
  color: rgba(162, 245, 191, 0.2);
}

.hover\:text-tertiary-lightest-20:hover{
  color: rgba(227, 252, 236, 0.2);
}

.focus\:text-border-20:focus{
  color: rgba(230, 235, 245, 0.2);
}

.focus\:text-form-20:focus{
  color: rgba(121, 130, 139, 0.2);
}

.focus\:text-form-active-20:focus{
  color: rgba(66, 80, 92, 0.2);
}

.focus\:text-black-20:focus{
  color: rgba(33, 37, 41, 0.2);
}

.focus\:text-grey-darkest-20:focus{
  color: rgba(154, 165, 192, 0.2);
}

.focus\:text-grey-darker-20:focus{
  color: rgba(154, 165, 192, 0.2);
}

.focus\:text-grey-dark-20:focus{
  color: rgba(66, 80, 92, 0.2);
}

.focus\:text-grey-20:focus{
  color: rgba(121, 130, 139, 0.2);
}

.focus\:text-grey-light-20:focus{
  color: rgba(179, 188, 197, 0.2);
}

.focus\:text-grey-lighter-20:focus{
  color: rgba(222, 228, 233, 0.2);
}

.focus\:text-grey-lightest-20:focus{
  color: rgba(244, 246, 249, 0.2);
}

.focus\:text-white-20:focus{
  color: rgba(255, 255, 255, 0.2);
}

.focus\:text-red-20:focus{
  color: rgba(211, 26, 8, 0.2);
}

.focus\:text-green-20:focus{
  color: rgba(102, 187, 8, 0.2);
}

.focus\:text-blue-20:focus{
  color: rgba(31, 168, 226, 0.2);
}

.focus\:text-orange-20:focus{
  color: rgba(247, 148, 14, 0.2);
}

.focus\:text-primary-darkest-20:focus{
  color: rgba(83, 15, 18, 0.2);
}

.focus\:text-primary-darker-20:focus{
  color: rgba(124, 23, 27, 0.2);
}

.focus\:text-primary-dark-20:focus{
  color: rgba(166, 30, 36, 0.2);
}

.focus\:text-primary-20:focus{
  color: rgba(207, 38, 45, 0.2);
}

.focus\:text-primary-light-20:focus{
  color: rgba(217, 81, 87, 0.2);
}

.focus\:text-primary-lighter-20:focus{
  color: rgba(226, 125, 129, 0.2);
}

.focus\:text-primary-lightest-20:focus{
  color: rgba(236, 168, 171, 0.2);
}

.focus\:text-secondary-darkest-20:focus{
  color: rgba(62, 69, 37, 0.2);
}

.focus\:text-secondary-darker-20:focus{
  color: rgba(94, 104, 55, 0.2);
}

.focus\:text-secondary-dark-20:focus{
  color: rgba(125, 138, 74, 0.2);
}

.focus\:text-secondary-20:focus{
  color: rgba(156, 173, 92, 0.2);
}

.focus\:text-secondary-light-20:focus{
  color: rgba(176, 189, 125, 0.2);
}

.focus\:text-secondary-lighter-20:focus{
  color: rgba(196, 206, 157, 0.2);
}

.focus\:text-secondary-lightest-20:focus{
  color: rgba(215, 222, 190, 0.2);
}

.focus\:text-tertiary-darkest-20:focus{
  color: rgba(15, 47, 33, 0.2);
}

.focus\:text-tertiary-darker-20:focus{
  color: rgba(26, 71, 49, 0.2);
}

.focus\:text-tertiary-dark-20:focus{
  color: rgba(31, 157, 85, 0.2);
}

.focus\:text-tertiary-20:focus{
  color: rgba(255, 197, 0, 0.2);
}

.focus\:text-tertiary-light-20:focus{
  color: rgba(81, 216, 138, 0.2);
}

.focus\:text-tertiary-lighter-20:focus{
  color: rgba(162, 245, 191, 0.2);
}

.focus\:text-tertiary-lightest-20:focus{
  color: rgba(227, 252, 236, 0.2);
}

.focus\:text-border-20:focus{
  color: rgba(230, 235, 245, 0.2);
}

.focus\:text-form-20:focus{
  color: rgba(121, 130, 139, 0.2);
}

.focus\:text-form-active-20:focus{
  color: rgba(66, 80, 92, 0.2);
}

.focus\:text-black-20:focus{
  color: rgba(33, 37, 41, 0.2);
}

.focus\:text-grey-darkest-20:focus{
  color: rgba(154, 165, 192, 0.2);
}

.focus\:text-grey-darker-20:focus{
  color: rgba(154, 165, 192, 0.2);
}

.focus\:text-grey-dark-20:focus{
  color: rgba(66, 80, 92, 0.2);
}

.focus\:text-grey-20:focus{
  color: rgba(121, 130, 139, 0.2);
}

.focus\:text-grey-light-20:focus{
  color: rgba(179, 188, 197, 0.2);
}

.focus\:text-grey-lighter-20:focus{
  color: rgba(222, 228, 233, 0.2);
}

.focus\:text-grey-lightest-20:focus{
  color: rgba(244, 246, 249, 0.2);
}

.focus\:text-white-20:focus{
  color: rgba(255, 255, 255, 0.2);
}

.focus\:text-red-20:focus{
  color: rgba(211, 26, 8, 0.2);
}

.focus\:text-green-20:focus{
  color: rgba(102, 187, 8, 0.2);
}

.focus\:text-blue-20:focus{
  color: rgba(31, 168, 226, 0.2);
}

.focus\:text-orange-20:focus{
  color: rgba(247, 148, 14, 0.2);
}

.focus\:text-primary-darkest-20:focus{
  color: rgba(83, 15, 18, 0.2);
}

.focus\:text-primary-darker-20:focus{
  color: rgba(124, 23, 27, 0.2);
}

.focus\:text-primary-dark-20:focus{
  color: rgba(166, 30, 36, 0.2);
}

.focus\:text-primary-20:focus{
  color: rgba(207, 38, 45, 0.2);
}

.focus\:text-primary-light-20:focus{
  color: rgba(217, 81, 87, 0.2);
}

.focus\:text-primary-lighter-20:focus{
  color: rgba(226, 125, 129, 0.2);
}

.focus\:text-primary-lightest-20:focus{
  color: rgba(236, 168, 171, 0.2);
}

.focus\:text-secondary-darkest-20:focus{
  color: rgba(62, 69, 37, 0.2);
}

.focus\:text-secondary-darker-20:focus{
  color: rgba(94, 104, 55, 0.2);
}

.focus\:text-secondary-dark-20:focus{
  color: rgba(125, 138, 74, 0.2);
}

.focus\:text-secondary-20:focus{
  color: rgba(156, 173, 92, 0.2);
}

.focus\:text-secondary-light-20:focus{
  color: rgba(176, 189, 125, 0.2);
}

.focus\:text-secondary-lighter-20:focus{
  color: rgba(196, 206, 157, 0.2);
}

.focus\:text-secondary-lightest-20:focus{
  color: rgba(215, 222, 190, 0.2);
}

.focus\:text-tertiary-darkest-20:focus{
  color: rgba(15, 47, 33, 0.2);
}

.focus\:text-tertiary-darker-20:focus{
  color: rgba(26, 71, 49, 0.2);
}

.focus\:text-tertiary-dark-20:focus{
  color: rgba(31, 157, 85, 0.2);
}

.focus\:text-tertiary-20:focus{
  color: rgba(255, 197, 0, 0.2);
}

.focus\:text-tertiary-light-20:focus{
  color: rgba(81, 216, 138, 0.2);
}

.focus\:text-tertiary-lighter-20:focus{
  color: rgba(162, 245, 191, 0.2);
}

.focus\:text-tertiary-lightest-20:focus{
  color: rgba(227, 252, 236, 0.2);
}

.group:hover .group-hover\:text-border-20{
  color: rgba(230, 235, 245, 0.2);
}

.group:hover .group-hover\:text-form-20{
  color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:text-form-active-20{
  color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:text-black-20{
  color: rgba(33, 37, 41, 0.2);
}

.group:hover .group-hover\:text-grey-darkest-20{
  color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:text-grey-darker-20{
  color: rgba(154, 165, 192, 0.2);
}

.group:hover .group-hover\:text-grey-dark-20{
  color: rgba(66, 80, 92, 0.2);
}

.group:hover .group-hover\:text-grey-20{
  color: rgba(121, 130, 139, 0.2);
}

.group:hover .group-hover\:text-grey-light-20{
  color: rgba(179, 188, 197, 0.2);
}

.group:hover .group-hover\:text-grey-lighter-20{
  color: rgba(222, 228, 233, 0.2);
}

.group:hover .group-hover\:text-grey-lightest-20{
  color: rgba(244, 246, 249, 0.2);
}

.group:hover .group-hover\:text-white-20{
  color: rgba(255, 255, 255, 0.2);
}

.group:hover .group-hover\:text-red-20{
  color: rgba(211, 26, 8, 0.2);
}

.group:hover .group-hover\:text-green-20{
  color: rgba(102, 187, 8, 0.2);
}

.group:hover .group-hover\:text-blue-20{
  color: rgba(31, 168, 226, 0.2);
}

.group:hover .group-hover\:text-orange-20{
  color: rgba(247, 148, 14, 0.2);
}

.group:hover .group-hover\:text-primary-darkest-20{
  color: rgba(83, 15, 18, 0.2);
}

.group:hover .group-hover\:text-primary-darker-20{
  color: rgba(124, 23, 27, 0.2);
}

.group:hover .group-hover\:text-primary-dark-20{
  color: rgba(166, 30, 36, 0.2);
}

.group:hover .group-hover\:text-primary-20{
  color: rgba(207, 38, 45, 0.2);
}

.group:hover .group-hover\:text-primary-light-20{
  color: rgba(217, 81, 87, 0.2);
}

.group:hover .group-hover\:text-primary-lighter-20{
  color: rgba(226, 125, 129, 0.2);
}

.group:hover .group-hover\:text-primary-lightest-20{
  color: rgba(236, 168, 171, 0.2);
}

.group:hover .group-hover\:text-secondary-darkest-20{
  color: rgba(62, 69, 37, 0.2);
}

.group:hover .group-hover\:text-secondary-darker-20{
  color: rgba(94, 104, 55, 0.2);
}

.group:hover .group-hover\:text-secondary-dark-20{
  color: rgba(125, 138, 74, 0.2);
}

.group:hover .group-hover\:text-secondary-20{
  color: rgba(156, 173, 92, 0.2);
}

.group:hover .group-hover\:text-secondary-light-20{
  color: rgba(176, 189, 125, 0.2);
}

.group:hover .group-hover\:text-secondary-lighter-20{
  color: rgba(196, 206, 157, 0.2);
}

.group:hover .group-hover\:text-secondary-lightest-20{
  color: rgba(215, 222, 190, 0.2);
}

.group:hover .group-hover\:text-tertiary-darkest-20{
  color: rgba(15, 47, 33, 0.2);
}

.group:hover .group-hover\:text-tertiary-darker-20{
  color: rgba(26, 71, 49, 0.2);
}

.group:hover .group-hover\:text-tertiary-dark-20{
  color: rgba(31, 157, 85, 0.2);
}

.group:hover .group-hover\:text-tertiary-20{
  color: rgba(255, 197, 0, 0.2);
}

.group:hover .group-hover\:text-tertiary-light-20{
  color: rgba(81, 216, 138, 0.2);
}

.group:hover .group-hover\:text-tertiary-lighter-20{
  color: rgba(162, 245, 191, 0.2);
}

.group:hover .group-hover\:text-tertiary-lightest-20{
  color: rgba(227, 252, 236, 0.2);
}

.bg-border-30{
  background-color: rgba(230, 235, 245, 0.3);
}

.bg-form-30{
  background-color: rgba(121, 130, 139, 0.3);
}

.bg-form-active-30{
  background-color: rgba(66, 80, 92, 0.3);
}

.bg-black-30{
  background-color: rgba(33, 37, 41, 0.3);
}

.bg-grey-darkest-30{
  background-color: rgba(154, 165, 192, 0.3);
}

.bg-grey-darker-30{
  background-color: rgba(154, 165, 192, 0.3);
}

.bg-grey-dark-30{
  background-color: rgba(66, 80, 92, 0.3);
}

.bg-grey-30{
  background-color: rgba(121, 130, 139, 0.3);
}

.bg-grey-light-30{
  background-color: rgba(179, 188, 197, 0.3);
}

.bg-grey-lighter-30{
  background-color: rgba(222, 228, 233, 0.3);
}

.bg-grey-lightest-30{
  background-color: rgba(244, 246, 249, 0.3);
}

.bg-white-30{
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-red-30{
  background-color: rgba(211, 26, 8, 0.3);
}

.bg-green-30{
  background-color: rgba(102, 187, 8, 0.3);
}

.bg-blue-30{
  background-color: rgba(31, 168, 226, 0.3);
}

.bg-orange-30{
  background-color: rgba(247, 148, 14, 0.3);
}

.bg-primary-darkest-30{
  background-color: rgba(83, 15, 18, 0.3);
}

.bg-primary-darker-30{
  background-color: rgba(124, 23, 27, 0.3);
}

.bg-primary-dark-30{
  background-color: rgba(166, 30, 36, 0.3);
}

.bg-primary-30{
  background-color: rgba(207, 38, 45, 0.3);
}

.bg-primary-light-30{
  background-color: rgba(217, 81, 87, 0.3);
}

.bg-primary-lighter-30{
  background-color: rgba(226, 125, 129, 0.3);
}

.bg-primary-lightest-30{
  background-color: rgba(236, 168, 171, 0.3);
}

.bg-secondary-darkest-30{
  background-color: rgba(62, 69, 37, 0.3);
}

.bg-secondary-darker-30{
  background-color: rgba(94, 104, 55, 0.3);
}

.bg-secondary-dark-30{
  background-color: rgba(125, 138, 74, 0.3);
}

.bg-secondary-30{
  background-color: rgba(156, 173, 92, 0.3);
}

.bg-secondary-light-30{
  background-color: rgba(176, 189, 125, 0.3);
}

.bg-secondary-lighter-30{
  background-color: rgba(196, 206, 157, 0.3);
}

.bg-secondary-lightest-30{
  background-color: rgba(215, 222, 190, 0.3);
}

.bg-tertiary-darkest-30{
  background-color: rgba(15, 47, 33, 0.3);
}

.bg-tertiary-darker-30{
  background-color: rgba(26, 71, 49, 0.3);
}

.bg-tertiary-dark-30{
  background-color: rgba(31, 157, 85, 0.3);
}

.bg-tertiary-30{
  background-color: rgba(255, 197, 0, 0.3);
}

.bg-tertiary-light-30{
  background-color: rgba(81, 216, 138, 0.3);
}

.bg-tertiary-lighter-30{
  background-color: rgba(162, 245, 191, 0.3);
}

.bg-tertiary-lightest-30{
  background-color: rgba(227, 252, 236, 0.3);
}

.hover\:bg-border-30:hover{
  background-color: rgba(230, 235, 245, 0.3);
}

.hover\:bg-form-30:hover{
  background-color: rgba(121, 130, 139, 0.3);
}

.hover\:bg-form-active-30:hover{
  background-color: rgba(66, 80, 92, 0.3);
}

.hover\:bg-black-30:hover{
  background-color: rgba(33, 37, 41, 0.3);
}

.hover\:bg-grey-darkest-30:hover{
  background-color: rgba(154, 165, 192, 0.3);
}

.hover\:bg-grey-darker-30:hover{
  background-color: rgba(154, 165, 192, 0.3);
}

.hover\:bg-grey-dark-30:hover{
  background-color: rgba(66, 80, 92, 0.3);
}

.hover\:bg-grey-30:hover{
  background-color: rgba(121, 130, 139, 0.3);
}

.hover\:bg-grey-light-30:hover{
  background-color: rgba(179, 188, 197, 0.3);
}

.hover\:bg-grey-lighter-30:hover{
  background-color: rgba(222, 228, 233, 0.3);
}

.hover\:bg-grey-lightest-30:hover{
  background-color: rgba(244, 246, 249, 0.3);
}

.hover\:bg-white-30:hover{
  background-color: rgba(255, 255, 255, 0.3);
}

.hover\:bg-red-30:hover{
  background-color: rgba(211, 26, 8, 0.3);
}

.hover\:bg-green-30:hover{
  background-color: rgba(102, 187, 8, 0.3);
}

.hover\:bg-blue-30:hover{
  background-color: rgba(31, 168, 226, 0.3);
}

.hover\:bg-orange-30:hover{
  background-color: rgba(247, 148, 14, 0.3);
}

.hover\:bg-primary-darkest-30:hover{
  background-color: rgba(83, 15, 18, 0.3);
}

.hover\:bg-primary-darker-30:hover{
  background-color: rgba(124, 23, 27, 0.3);
}

.hover\:bg-primary-dark-30:hover{
  background-color: rgba(166, 30, 36, 0.3);
}

.hover\:bg-primary-30:hover{
  background-color: rgba(207, 38, 45, 0.3);
}

.hover\:bg-primary-light-30:hover{
  background-color: rgba(217, 81, 87, 0.3);
}

.hover\:bg-primary-lighter-30:hover{
  background-color: rgba(226, 125, 129, 0.3);
}

.hover\:bg-primary-lightest-30:hover{
  background-color: rgba(236, 168, 171, 0.3);
}

.hover\:bg-secondary-darkest-30:hover{
  background-color: rgba(62, 69, 37, 0.3);
}

.hover\:bg-secondary-darker-30:hover{
  background-color: rgba(94, 104, 55, 0.3);
}

.hover\:bg-secondary-dark-30:hover{
  background-color: rgba(125, 138, 74, 0.3);
}

.hover\:bg-secondary-30:hover{
  background-color: rgba(156, 173, 92, 0.3);
}

.hover\:bg-secondary-light-30:hover{
  background-color: rgba(176, 189, 125, 0.3);
}

.hover\:bg-secondary-lighter-30:hover{
  background-color: rgba(196, 206, 157, 0.3);
}

.hover\:bg-secondary-lightest-30:hover{
  background-color: rgba(215, 222, 190, 0.3);
}

.hover\:bg-tertiary-darkest-30:hover{
  background-color: rgba(15, 47, 33, 0.3);
}

.hover\:bg-tertiary-darker-30:hover{
  background-color: rgba(26, 71, 49, 0.3);
}

.hover\:bg-tertiary-dark-30:hover{
  background-color: rgba(31, 157, 85, 0.3);
}

.hover\:bg-tertiary-30:hover{
  background-color: rgba(255, 197, 0, 0.3);
}

.hover\:bg-tertiary-light-30:hover{
  background-color: rgba(81, 216, 138, 0.3);
}

.hover\:bg-tertiary-lighter-30:hover{
  background-color: rgba(162, 245, 191, 0.3);
}

.hover\:bg-tertiary-lightest-30:hover{
  background-color: rgba(227, 252, 236, 0.3);
}

.focus\:bg-border-30:focus{
  background-color: rgba(230, 235, 245, 0.3);
}

.focus\:bg-form-30:focus{
  background-color: rgba(121, 130, 139, 0.3);
}

.focus\:bg-form-active-30:focus{
  background-color: rgba(66, 80, 92, 0.3);
}

.focus\:bg-black-30:focus{
  background-color: rgba(33, 37, 41, 0.3);
}

.focus\:bg-grey-darkest-30:focus{
  background-color: rgba(154, 165, 192, 0.3);
}

.focus\:bg-grey-darker-30:focus{
  background-color: rgba(154, 165, 192, 0.3);
}

.focus\:bg-grey-dark-30:focus{
  background-color: rgba(66, 80, 92, 0.3);
}

.focus\:bg-grey-30:focus{
  background-color: rgba(121, 130, 139, 0.3);
}

.focus\:bg-grey-light-30:focus{
  background-color: rgba(179, 188, 197, 0.3);
}

.focus\:bg-grey-lighter-30:focus{
  background-color: rgba(222, 228, 233, 0.3);
}

.focus\:bg-grey-lightest-30:focus{
  background-color: rgba(244, 246, 249, 0.3);
}

.focus\:bg-white-30:focus{
  background-color: rgba(255, 255, 255, 0.3);
}

.focus\:bg-red-30:focus{
  background-color: rgba(211, 26, 8, 0.3);
}

.focus\:bg-green-30:focus{
  background-color: rgba(102, 187, 8, 0.3);
}

.focus\:bg-blue-30:focus{
  background-color: rgba(31, 168, 226, 0.3);
}

.focus\:bg-orange-30:focus{
  background-color: rgba(247, 148, 14, 0.3);
}

.focus\:bg-primary-darkest-30:focus{
  background-color: rgba(83, 15, 18, 0.3);
}

.focus\:bg-primary-darker-30:focus{
  background-color: rgba(124, 23, 27, 0.3);
}

.focus\:bg-primary-dark-30:focus{
  background-color: rgba(166, 30, 36, 0.3);
}

.focus\:bg-primary-30:focus{
  background-color: rgba(207, 38, 45, 0.3);
}

.focus\:bg-primary-light-30:focus{
  background-color: rgba(217, 81, 87, 0.3);
}

.focus\:bg-primary-lighter-30:focus{
  background-color: rgba(226, 125, 129, 0.3);
}

.focus\:bg-primary-lightest-30:focus{
  background-color: rgba(236, 168, 171, 0.3);
}

.focus\:bg-secondary-darkest-30:focus{
  background-color: rgba(62, 69, 37, 0.3);
}

.focus\:bg-secondary-darker-30:focus{
  background-color: rgba(94, 104, 55, 0.3);
}

.focus\:bg-secondary-dark-30:focus{
  background-color: rgba(125, 138, 74, 0.3);
}

.focus\:bg-secondary-30:focus{
  background-color: rgba(156, 173, 92, 0.3);
}

.focus\:bg-secondary-light-30:focus{
  background-color: rgba(176, 189, 125, 0.3);
}

.focus\:bg-secondary-lighter-30:focus{
  background-color: rgba(196, 206, 157, 0.3);
}

.focus\:bg-secondary-lightest-30:focus{
  background-color: rgba(215, 222, 190, 0.3);
}

.focus\:bg-tertiary-darkest-30:focus{
  background-color: rgba(15, 47, 33, 0.3);
}

.focus\:bg-tertiary-darker-30:focus{
  background-color: rgba(26, 71, 49, 0.3);
}

.focus\:bg-tertiary-dark-30:focus{
  background-color: rgba(31, 157, 85, 0.3);
}

.focus\:bg-tertiary-30:focus{
  background-color: rgba(255, 197, 0, 0.3);
}

.focus\:bg-tertiary-light-30:focus{
  background-color: rgba(81, 216, 138, 0.3);
}

.focus\:bg-tertiary-lighter-30:focus{
  background-color: rgba(162, 245, 191, 0.3);
}

.focus\:bg-tertiary-lightest-30:focus{
  background-color: rgba(227, 252, 236, 0.3);
}

.focus\:bg-border-30:focus{
  background-color: rgba(230, 235, 245, 0.3);
}

.focus\:bg-form-30:focus{
  background-color: rgba(121, 130, 139, 0.3);
}

.focus\:bg-form-active-30:focus{
  background-color: rgba(66, 80, 92, 0.3);
}

.focus\:bg-black-30:focus{
  background-color: rgba(33, 37, 41, 0.3);
}

.focus\:bg-grey-darkest-30:focus{
  background-color: rgba(154, 165, 192, 0.3);
}

.focus\:bg-grey-darker-30:focus{
  background-color: rgba(154, 165, 192, 0.3);
}

.focus\:bg-grey-dark-30:focus{
  background-color: rgba(66, 80, 92, 0.3);
}

.focus\:bg-grey-30:focus{
  background-color: rgba(121, 130, 139, 0.3);
}

.focus\:bg-grey-light-30:focus{
  background-color: rgba(179, 188, 197, 0.3);
}

.focus\:bg-grey-lighter-30:focus{
  background-color: rgba(222, 228, 233, 0.3);
}

.focus\:bg-grey-lightest-30:focus{
  background-color: rgba(244, 246, 249, 0.3);
}

.focus\:bg-white-30:focus{
  background-color: rgba(255, 255, 255, 0.3);
}

.focus\:bg-red-30:focus{
  background-color: rgba(211, 26, 8, 0.3);
}

.focus\:bg-green-30:focus{
  background-color: rgba(102, 187, 8, 0.3);
}

.focus\:bg-blue-30:focus{
  background-color: rgba(31, 168, 226, 0.3);
}

.focus\:bg-orange-30:focus{
  background-color: rgba(247, 148, 14, 0.3);
}

.focus\:bg-primary-darkest-30:focus{
  background-color: rgba(83, 15, 18, 0.3);
}

.focus\:bg-primary-darker-30:focus{
  background-color: rgba(124, 23, 27, 0.3);
}

.focus\:bg-primary-dark-30:focus{
  background-color: rgba(166, 30, 36, 0.3);
}

.focus\:bg-primary-30:focus{
  background-color: rgba(207, 38, 45, 0.3);
}

.focus\:bg-primary-light-30:focus{
  background-color: rgba(217, 81, 87, 0.3);
}

.focus\:bg-primary-lighter-30:focus{
  background-color: rgba(226, 125, 129, 0.3);
}

.focus\:bg-primary-lightest-30:focus{
  background-color: rgba(236, 168, 171, 0.3);
}

.focus\:bg-secondary-darkest-30:focus{
  background-color: rgba(62, 69, 37, 0.3);
}

.focus\:bg-secondary-darker-30:focus{
  background-color: rgba(94, 104, 55, 0.3);
}

.focus\:bg-secondary-dark-30:focus{
  background-color: rgba(125, 138, 74, 0.3);
}

.focus\:bg-secondary-30:focus{
  background-color: rgba(156, 173, 92, 0.3);
}

.focus\:bg-secondary-light-30:focus{
  background-color: rgba(176, 189, 125, 0.3);
}

.focus\:bg-secondary-lighter-30:focus{
  background-color: rgba(196, 206, 157, 0.3);
}

.focus\:bg-secondary-lightest-30:focus{
  background-color: rgba(215, 222, 190, 0.3);
}

.focus\:bg-tertiary-darkest-30:focus{
  background-color: rgba(15, 47, 33, 0.3);
}

.focus\:bg-tertiary-darker-30:focus{
  background-color: rgba(26, 71, 49, 0.3);
}

.focus\:bg-tertiary-dark-30:focus{
  background-color: rgba(31, 157, 85, 0.3);
}

.focus\:bg-tertiary-30:focus{
  background-color: rgba(255, 197, 0, 0.3);
}

.focus\:bg-tertiary-light-30:focus{
  background-color: rgba(81, 216, 138, 0.3);
}

.focus\:bg-tertiary-lighter-30:focus{
  background-color: rgba(162, 245, 191, 0.3);
}

.focus\:bg-tertiary-lightest-30:focus{
  background-color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:bg-border-30{
  background-color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:bg-form-30{
  background-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:bg-form-active-30{
  background-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:bg-black-30{
  background-color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:bg-grey-darkest-30{
  background-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:bg-grey-darker-30{
  background-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:bg-grey-dark-30{
  background-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:bg-grey-30{
  background-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:bg-grey-light-30{
  background-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:bg-grey-lighter-30{
  background-color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:bg-grey-lightest-30{
  background-color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:bg-white-30{
  background-color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:bg-red-30{
  background-color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:bg-green-30{
  background-color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:bg-blue-30{
  background-color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:bg-orange-30{
  background-color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:bg-primary-darkest-30{
  background-color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:bg-primary-darker-30{
  background-color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:bg-primary-dark-30{
  background-color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:bg-primary-30{
  background-color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:bg-primary-light-30{
  background-color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:bg-primary-lighter-30{
  background-color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:bg-primary-lightest-30{
  background-color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:bg-secondary-darkest-30{
  background-color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:bg-secondary-darker-30{
  background-color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:bg-secondary-dark-30{
  background-color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:bg-secondary-30{
  background-color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:bg-secondary-light-30{
  background-color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:bg-secondary-lighter-30{
  background-color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:bg-secondary-lightest-30{
  background-color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:bg-tertiary-darkest-30{
  background-color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:bg-tertiary-darker-30{
  background-color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:bg-tertiary-dark-30{
  background-color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:bg-tertiary-30{
  background-color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:bg-tertiary-light-30{
  background-color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:bg-tertiary-lighter-30{
  background-color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:bg-tertiary-lightest-30{
  background-color: rgba(227, 252, 236, 0.3);
}

.border-border-30{
  border-color: rgba(230, 235, 245, 0.3);
}

.border-t-border-30{
  border-top-color: rgba(230, 235, 245, 0.3);
}

.border-r-border-30{
  border-right-color: rgba(230, 235, 245, 0.3);
}

.border-b-border-30{
  border-bottom-color: rgba(230, 235, 245, 0.3);
}

.border-l-border-30{
  border-left-color: rgba(230, 235, 245, 0.3);
}

.border-form-30{
  border-color: rgba(121, 130, 139, 0.3);
}

.border-t-form-30{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.border-r-form-30{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.border-b-form-30{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.border-l-form-30{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.border-form-active-30{
  border-color: rgba(66, 80, 92, 0.3);
}

.border-t-form-active-30{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.border-r-form-active-30{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.border-b-form-active-30{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.border-l-form-active-30{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.border-black-30{
  border-color: rgba(33, 37, 41, 0.3);
}

.border-t-black-30{
  border-top-color: rgba(33, 37, 41, 0.3);
}

.border-r-black-30{
  border-right-color: rgba(33, 37, 41, 0.3);
}

.border-b-black-30{
  border-bottom-color: rgba(33, 37, 41, 0.3);
}

.border-l-black-30{
  border-left-color: rgba(33, 37, 41, 0.3);
}

.border-grey-darkest-30{
  border-color: rgba(154, 165, 192, 0.3);
}

.border-t-grey-darkest-30{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.border-r-grey-darkest-30{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.border-b-grey-darkest-30{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.border-l-grey-darkest-30{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.border-grey-darker-30{
  border-color: rgba(154, 165, 192, 0.3);
}

.border-t-grey-darker-30{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.border-r-grey-darker-30{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.border-b-grey-darker-30{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.border-l-grey-darker-30{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.border-grey-dark-30{
  border-color: rgba(66, 80, 92, 0.3);
}

.border-t-grey-dark-30{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.border-r-grey-dark-30{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.border-b-grey-dark-30{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.border-l-grey-dark-30{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.border-grey-30{
  border-color: rgba(121, 130, 139, 0.3);
}

.border-t-grey-30{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.border-r-grey-30{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.border-b-grey-30{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.border-l-grey-30{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.border-grey-light-30{
  border-color: rgba(179, 188, 197, 0.3);
}

.border-t-grey-light-30{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.border-r-grey-light-30{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.border-b-grey-light-30{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.border-l-grey-light-30{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.border-grey-lighter-30{
  border-color: rgba(222, 228, 233, 0.3);
}

.border-t-grey-lighter-30{
  border-top-color: rgba(222, 228, 233, 0.3);
}

.border-r-grey-lighter-30{
  border-right-color: rgba(222, 228, 233, 0.3);
}

.border-b-grey-lighter-30{
  border-bottom-color: rgba(222, 228, 233, 0.3);
}

.border-l-grey-lighter-30{
  border-left-color: rgba(222, 228, 233, 0.3);
}

.border-grey-lightest-30{
  border-color: rgba(244, 246, 249, 0.3);
}

.border-t-grey-lightest-30{
  border-top-color: rgba(244, 246, 249, 0.3);
}

.border-r-grey-lightest-30{
  border-right-color: rgba(244, 246, 249, 0.3);
}

.border-b-grey-lightest-30{
  border-bottom-color: rgba(244, 246, 249, 0.3);
}

.border-l-grey-lightest-30{
  border-left-color: rgba(244, 246, 249, 0.3);
}

.border-white-30{
  border-color: rgba(255, 255, 255, 0.3);
}

.border-t-white-30{
  border-top-color: rgba(255, 255, 255, 0.3);
}

.border-r-white-30{
  border-right-color: rgba(255, 255, 255, 0.3);
}

.border-b-white-30{
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.border-l-white-30{
  border-left-color: rgba(255, 255, 255, 0.3);
}

.border-red-30{
  border-color: rgba(211, 26, 8, 0.3);
}

.border-t-red-30{
  border-top-color: rgba(211, 26, 8, 0.3);
}

.border-r-red-30{
  border-right-color: rgba(211, 26, 8, 0.3);
}

.border-b-red-30{
  border-bottom-color: rgba(211, 26, 8, 0.3);
}

.border-l-red-30{
  border-left-color: rgba(211, 26, 8, 0.3);
}

.border-green-30{
  border-color: rgba(102, 187, 8, 0.3);
}

.border-t-green-30{
  border-top-color: rgba(102, 187, 8, 0.3);
}

.border-r-green-30{
  border-right-color: rgba(102, 187, 8, 0.3);
}

.border-b-green-30{
  border-bottom-color: rgba(102, 187, 8, 0.3);
}

.border-l-green-30{
  border-left-color: rgba(102, 187, 8, 0.3);
}

.border-blue-30{
  border-color: rgba(31, 168, 226, 0.3);
}

.border-t-blue-30{
  border-top-color: rgba(31, 168, 226, 0.3);
}

.border-r-blue-30{
  border-right-color: rgba(31, 168, 226, 0.3);
}

.border-b-blue-30{
  border-bottom-color: rgba(31, 168, 226, 0.3);
}

.border-l-blue-30{
  border-left-color: rgba(31, 168, 226, 0.3);
}

.border-orange-30{
  border-color: rgba(247, 148, 14, 0.3);
}

.border-t-orange-30{
  border-top-color: rgba(247, 148, 14, 0.3);
}

.border-r-orange-30{
  border-right-color: rgba(247, 148, 14, 0.3);
}

.border-b-orange-30{
  border-bottom-color: rgba(247, 148, 14, 0.3);
}

.border-l-orange-30{
  border-left-color: rgba(247, 148, 14, 0.3);
}

.border-primary-darkest-30{
  border-color: rgba(83, 15, 18, 0.3);
}

.border-t-primary-darkest-30{
  border-top-color: rgba(83, 15, 18, 0.3);
}

.border-r-primary-darkest-30{
  border-right-color: rgba(83, 15, 18, 0.3);
}

.border-b-primary-darkest-30{
  border-bottom-color: rgba(83, 15, 18, 0.3);
}

.border-l-primary-darkest-30{
  border-left-color: rgba(83, 15, 18, 0.3);
}

.border-primary-darker-30{
  border-color: rgba(124, 23, 27, 0.3);
}

.border-t-primary-darker-30{
  border-top-color: rgba(124, 23, 27, 0.3);
}

.border-r-primary-darker-30{
  border-right-color: rgba(124, 23, 27, 0.3);
}

.border-b-primary-darker-30{
  border-bottom-color: rgba(124, 23, 27, 0.3);
}

.border-l-primary-darker-30{
  border-left-color: rgba(124, 23, 27, 0.3);
}

.border-primary-dark-30{
  border-color: rgba(166, 30, 36, 0.3);
}

.border-t-primary-dark-30{
  border-top-color: rgba(166, 30, 36, 0.3);
}

.border-r-primary-dark-30{
  border-right-color: rgba(166, 30, 36, 0.3);
}

.border-b-primary-dark-30{
  border-bottom-color: rgba(166, 30, 36, 0.3);
}

.border-l-primary-dark-30{
  border-left-color: rgba(166, 30, 36, 0.3);
}

.border-primary-30{
  border-color: rgba(207, 38, 45, 0.3);
}

.border-t-primary-30{
  border-top-color: rgba(207, 38, 45, 0.3);
}

.border-r-primary-30{
  border-right-color: rgba(207, 38, 45, 0.3);
}

.border-b-primary-30{
  border-bottom-color: rgba(207, 38, 45, 0.3);
}

.border-l-primary-30{
  border-left-color: rgba(207, 38, 45, 0.3);
}

.border-primary-light-30{
  border-color: rgba(217, 81, 87, 0.3);
}

.border-t-primary-light-30{
  border-top-color: rgba(217, 81, 87, 0.3);
}

.border-r-primary-light-30{
  border-right-color: rgba(217, 81, 87, 0.3);
}

.border-b-primary-light-30{
  border-bottom-color: rgba(217, 81, 87, 0.3);
}

.border-l-primary-light-30{
  border-left-color: rgba(217, 81, 87, 0.3);
}

.border-primary-lighter-30{
  border-color: rgba(226, 125, 129, 0.3);
}

.border-t-primary-lighter-30{
  border-top-color: rgba(226, 125, 129, 0.3);
}

.border-r-primary-lighter-30{
  border-right-color: rgba(226, 125, 129, 0.3);
}

.border-b-primary-lighter-30{
  border-bottom-color: rgba(226, 125, 129, 0.3);
}

.border-l-primary-lighter-30{
  border-left-color: rgba(226, 125, 129, 0.3);
}

.border-primary-lightest-30{
  border-color: rgba(236, 168, 171, 0.3);
}

.border-t-primary-lightest-30{
  border-top-color: rgba(236, 168, 171, 0.3);
}

.border-r-primary-lightest-30{
  border-right-color: rgba(236, 168, 171, 0.3);
}

.border-b-primary-lightest-30{
  border-bottom-color: rgba(236, 168, 171, 0.3);
}

.border-l-primary-lightest-30{
  border-left-color: rgba(236, 168, 171, 0.3);
}

.border-secondary-darkest-30{
  border-color: rgba(62, 69, 37, 0.3);
}

.border-t-secondary-darkest-30{
  border-top-color: rgba(62, 69, 37, 0.3);
}

.border-r-secondary-darkest-30{
  border-right-color: rgba(62, 69, 37, 0.3);
}

.border-b-secondary-darkest-30{
  border-bottom-color: rgba(62, 69, 37, 0.3);
}

.border-l-secondary-darkest-30{
  border-left-color: rgba(62, 69, 37, 0.3);
}

.border-secondary-darker-30{
  border-color: rgba(94, 104, 55, 0.3);
}

.border-t-secondary-darker-30{
  border-top-color: rgba(94, 104, 55, 0.3);
}

.border-r-secondary-darker-30{
  border-right-color: rgba(94, 104, 55, 0.3);
}

.border-b-secondary-darker-30{
  border-bottom-color: rgba(94, 104, 55, 0.3);
}

.border-l-secondary-darker-30{
  border-left-color: rgba(94, 104, 55, 0.3);
}

.border-secondary-dark-30{
  border-color: rgba(125, 138, 74, 0.3);
}

.border-t-secondary-dark-30{
  border-top-color: rgba(125, 138, 74, 0.3);
}

.border-r-secondary-dark-30{
  border-right-color: rgba(125, 138, 74, 0.3);
}

.border-b-secondary-dark-30{
  border-bottom-color: rgba(125, 138, 74, 0.3);
}

.border-l-secondary-dark-30{
  border-left-color: rgba(125, 138, 74, 0.3);
}

.border-secondary-30{
  border-color: rgba(156, 173, 92, 0.3);
}

.border-t-secondary-30{
  border-top-color: rgba(156, 173, 92, 0.3);
}

.border-r-secondary-30{
  border-right-color: rgba(156, 173, 92, 0.3);
}

.border-b-secondary-30{
  border-bottom-color: rgba(156, 173, 92, 0.3);
}

.border-l-secondary-30{
  border-left-color: rgba(156, 173, 92, 0.3);
}

.border-secondary-light-30{
  border-color: rgba(176, 189, 125, 0.3);
}

.border-t-secondary-light-30{
  border-top-color: rgba(176, 189, 125, 0.3);
}

.border-r-secondary-light-30{
  border-right-color: rgba(176, 189, 125, 0.3);
}

.border-b-secondary-light-30{
  border-bottom-color: rgba(176, 189, 125, 0.3);
}

.border-l-secondary-light-30{
  border-left-color: rgba(176, 189, 125, 0.3);
}

.border-secondary-lighter-30{
  border-color: rgba(196, 206, 157, 0.3);
}

.border-t-secondary-lighter-30{
  border-top-color: rgba(196, 206, 157, 0.3);
}

.border-r-secondary-lighter-30{
  border-right-color: rgba(196, 206, 157, 0.3);
}

.border-b-secondary-lighter-30{
  border-bottom-color: rgba(196, 206, 157, 0.3);
}

.border-l-secondary-lighter-30{
  border-left-color: rgba(196, 206, 157, 0.3);
}

.border-secondary-lightest-30{
  border-color: rgba(215, 222, 190, 0.3);
}

.border-t-secondary-lightest-30{
  border-top-color: rgba(215, 222, 190, 0.3);
}

.border-r-secondary-lightest-30{
  border-right-color: rgba(215, 222, 190, 0.3);
}

.border-b-secondary-lightest-30{
  border-bottom-color: rgba(215, 222, 190, 0.3);
}

.border-l-secondary-lightest-30{
  border-left-color: rgba(215, 222, 190, 0.3);
}

.border-tertiary-darkest-30{
  border-color: rgba(15, 47, 33, 0.3);
}

.border-t-tertiary-darkest-30{
  border-top-color: rgba(15, 47, 33, 0.3);
}

.border-r-tertiary-darkest-30{
  border-right-color: rgba(15, 47, 33, 0.3);
}

.border-b-tertiary-darkest-30{
  border-bottom-color: rgba(15, 47, 33, 0.3);
}

.border-l-tertiary-darkest-30{
  border-left-color: rgba(15, 47, 33, 0.3);
}

.border-tertiary-darker-30{
  border-color: rgba(26, 71, 49, 0.3);
}

.border-t-tertiary-darker-30{
  border-top-color: rgba(26, 71, 49, 0.3);
}

.border-r-tertiary-darker-30{
  border-right-color: rgba(26, 71, 49, 0.3);
}

.border-b-tertiary-darker-30{
  border-bottom-color: rgba(26, 71, 49, 0.3);
}

.border-l-tertiary-darker-30{
  border-left-color: rgba(26, 71, 49, 0.3);
}

.border-tertiary-dark-30{
  border-color: rgba(31, 157, 85, 0.3);
}

.border-t-tertiary-dark-30{
  border-top-color: rgba(31, 157, 85, 0.3);
}

.border-r-tertiary-dark-30{
  border-right-color: rgba(31, 157, 85, 0.3);
}

.border-b-tertiary-dark-30{
  border-bottom-color: rgba(31, 157, 85, 0.3);
}

.border-l-tertiary-dark-30{
  border-left-color: rgba(31, 157, 85, 0.3);
}

.border-tertiary-30{
  border-color: rgba(255, 197, 0, 0.3);
}

.border-t-tertiary-30{
  border-top-color: rgba(255, 197, 0, 0.3);
}

.border-r-tertiary-30{
  border-right-color: rgba(255, 197, 0, 0.3);
}

.border-b-tertiary-30{
  border-bottom-color: rgba(255, 197, 0, 0.3);
}

.border-l-tertiary-30{
  border-left-color: rgba(255, 197, 0, 0.3);
}

.border-tertiary-light-30{
  border-color: rgba(81, 216, 138, 0.3);
}

.border-t-tertiary-light-30{
  border-top-color: rgba(81, 216, 138, 0.3);
}

.border-r-tertiary-light-30{
  border-right-color: rgba(81, 216, 138, 0.3);
}

.border-b-tertiary-light-30{
  border-bottom-color: rgba(81, 216, 138, 0.3);
}

.border-l-tertiary-light-30{
  border-left-color: rgba(81, 216, 138, 0.3);
}

.border-tertiary-lighter-30{
  border-color: rgba(162, 245, 191, 0.3);
}

.border-t-tertiary-lighter-30{
  border-top-color: rgba(162, 245, 191, 0.3);
}

.border-r-tertiary-lighter-30{
  border-right-color: rgba(162, 245, 191, 0.3);
}

.border-b-tertiary-lighter-30{
  border-bottom-color: rgba(162, 245, 191, 0.3);
}

.border-l-tertiary-lighter-30{
  border-left-color: rgba(162, 245, 191, 0.3);
}

.border-tertiary-lightest-30{
  border-color: rgba(227, 252, 236, 0.3);
}

.border-t-tertiary-lightest-30{
  border-top-color: rgba(227, 252, 236, 0.3);
}

.border-r-tertiary-lightest-30{
  border-right-color: rgba(227, 252, 236, 0.3);
}

.border-b-tertiary-lightest-30{
  border-bottom-color: rgba(227, 252, 236, 0.3);
}

.border-l-tertiary-lightest-30{
  border-left-color: rgba(227, 252, 236, 0.3);
}

.border-default-30{
  border-color: rgba(179, 188, 197, 0.3);
}

.border-t-default-30{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.border-r-default-30{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.border-b-default-30{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.border-l-default-30{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-border-30:hover{
  border-color: rgba(230, 235, 245, 0.3);
}

.hover\:border-t-border-30:hover{
  border-top-color: rgba(230, 235, 245, 0.3);
}

.hover\:border-r-border-30:hover{
  border-right-color: rgba(230, 235, 245, 0.3);
}

.hover\:border-b-border-30:hover{
  border-bottom-color: rgba(230, 235, 245, 0.3);
}

.hover\:border-l-border-30:hover{
  border-left-color: rgba(230, 235, 245, 0.3);
}

.hover\:border-form-30:hover{
  border-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-t-form-30:hover{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-r-form-30:hover{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-b-form-30:hover{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-l-form-30:hover{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-form-active-30:hover{
  border-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-t-form-active-30:hover{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-r-form-active-30:hover{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-b-form-active-30:hover{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-l-form-active-30:hover{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-black-30:hover{
  border-color: rgba(33, 37, 41, 0.3);
}

.hover\:border-t-black-30:hover{
  border-top-color: rgba(33, 37, 41, 0.3);
}

.hover\:border-r-black-30:hover{
  border-right-color: rgba(33, 37, 41, 0.3);
}

.hover\:border-b-black-30:hover{
  border-bottom-color: rgba(33, 37, 41, 0.3);
}

.hover\:border-l-black-30:hover{
  border-left-color: rgba(33, 37, 41, 0.3);
}

.hover\:border-grey-darkest-30:hover{
  border-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-t-grey-darkest-30:hover{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-r-grey-darkest-30:hover{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-b-grey-darkest-30:hover{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-l-grey-darkest-30:hover{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-grey-darker-30:hover{
  border-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-t-grey-darker-30:hover{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-r-grey-darker-30:hover{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-b-grey-darker-30:hover{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-l-grey-darker-30:hover{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.hover\:border-grey-dark-30:hover{
  border-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-t-grey-dark-30:hover{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-r-grey-dark-30:hover{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-b-grey-dark-30:hover{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-l-grey-dark-30:hover{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.hover\:border-grey-30:hover{
  border-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-t-grey-30:hover{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-r-grey-30:hover{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-b-grey-30:hover{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-l-grey-30:hover{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.hover\:border-grey-light-30:hover{
  border-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-t-grey-light-30:hover{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-r-grey-light-30:hover{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-b-grey-light-30:hover{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-l-grey-light-30:hover{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-grey-lighter-30:hover{
  border-color: rgba(222, 228, 233, 0.3);
}

.hover\:border-t-grey-lighter-30:hover{
  border-top-color: rgba(222, 228, 233, 0.3);
}

.hover\:border-r-grey-lighter-30:hover{
  border-right-color: rgba(222, 228, 233, 0.3);
}

.hover\:border-b-grey-lighter-30:hover{
  border-bottom-color: rgba(222, 228, 233, 0.3);
}

.hover\:border-l-grey-lighter-30:hover{
  border-left-color: rgba(222, 228, 233, 0.3);
}

.hover\:border-grey-lightest-30:hover{
  border-color: rgba(244, 246, 249, 0.3);
}

.hover\:border-t-grey-lightest-30:hover{
  border-top-color: rgba(244, 246, 249, 0.3);
}

.hover\:border-r-grey-lightest-30:hover{
  border-right-color: rgba(244, 246, 249, 0.3);
}

.hover\:border-b-grey-lightest-30:hover{
  border-bottom-color: rgba(244, 246, 249, 0.3);
}

.hover\:border-l-grey-lightest-30:hover{
  border-left-color: rgba(244, 246, 249, 0.3);
}

.hover\:border-white-30:hover{
  border-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-t-white-30:hover{
  border-top-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-r-white-30:hover{
  border-right-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-b-white-30:hover{
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-l-white-30:hover{
  border-left-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-red-30:hover{
  border-color: rgba(211, 26, 8, 0.3);
}

.hover\:border-t-red-30:hover{
  border-top-color: rgba(211, 26, 8, 0.3);
}

.hover\:border-r-red-30:hover{
  border-right-color: rgba(211, 26, 8, 0.3);
}

.hover\:border-b-red-30:hover{
  border-bottom-color: rgba(211, 26, 8, 0.3);
}

.hover\:border-l-red-30:hover{
  border-left-color: rgba(211, 26, 8, 0.3);
}

.hover\:border-green-30:hover{
  border-color: rgba(102, 187, 8, 0.3);
}

.hover\:border-t-green-30:hover{
  border-top-color: rgba(102, 187, 8, 0.3);
}

.hover\:border-r-green-30:hover{
  border-right-color: rgba(102, 187, 8, 0.3);
}

.hover\:border-b-green-30:hover{
  border-bottom-color: rgba(102, 187, 8, 0.3);
}

.hover\:border-l-green-30:hover{
  border-left-color: rgba(102, 187, 8, 0.3);
}

.hover\:border-blue-30:hover{
  border-color: rgba(31, 168, 226, 0.3);
}

.hover\:border-t-blue-30:hover{
  border-top-color: rgba(31, 168, 226, 0.3);
}

.hover\:border-r-blue-30:hover{
  border-right-color: rgba(31, 168, 226, 0.3);
}

.hover\:border-b-blue-30:hover{
  border-bottom-color: rgba(31, 168, 226, 0.3);
}

.hover\:border-l-blue-30:hover{
  border-left-color: rgba(31, 168, 226, 0.3);
}

.hover\:border-orange-30:hover{
  border-color: rgba(247, 148, 14, 0.3);
}

.hover\:border-t-orange-30:hover{
  border-top-color: rgba(247, 148, 14, 0.3);
}

.hover\:border-r-orange-30:hover{
  border-right-color: rgba(247, 148, 14, 0.3);
}

.hover\:border-b-orange-30:hover{
  border-bottom-color: rgba(247, 148, 14, 0.3);
}

.hover\:border-l-orange-30:hover{
  border-left-color: rgba(247, 148, 14, 0.3);
}

.hover\:border-primary-darkest-30:hover{
  border-color: rgba(83, 15, 18, 0.3);
}

.hover\:border-t-primary-darkest-30:hover{
  border-top-color: rgba(83, 15, 18, 0.3);
}

.hover\:border-r-primary-darkest-30:hover{
  border-right-color: rgba(83, 15, 18, 0.3);
}

.hover\:border-b-primary-darkest-30:hover{
  border-bottom-color: rgba(83, 15, 18, 0.3);
}

.hover\:border-l-primary-darkest-30:hover{
  border-left-color: rgba(83, 15, 18, 0.3);
}

.hover\:border-primary-darker-30:hover{
  border-color: rgba(124, 23, 27, 0.3);
}

.hover\:border-t-primary-darker-30:hover{
  border-top-color: rgba(124, 23, 27, 0.3);
}

.hover\:border-r-primary-darker-30:hover{
  border-right-color: rgba(124, 23, 27, 0.3);
}

.hover\:border-b-primary-darker-30:hover{
  border-bottom-color: rgba(124, 23, 27, 0.3);
}

.hover\:border-l-primary-darker-30:hover{
  border-left-color: rgba(124, 23, 27, 0.3);
}

.hover\:border-primary-dark-30:hover{
  border-color: rgba(166, 30, 36, 0.3);
}

.hover\:border-t-primary-dark-30:hover{
  border-top-color: rgba(166, 30, 36, 0.3);
}

.hover\:border-r-primary-dark-30:hover{
  border-right-color: rgba(166, 30, 36, 0.3);
}

.hover\:border-b-primary-dark-30:hover{
  border-bottom-color: rgba(166, 30, 36, 0.3);
}

.hover\:border-l-primary-dark-30:hover{
  border-left-color: rgba(166, 30, 36, 0.3);
}

.hover\:border-primary-30:hover{
  border-color: rgba(207, 38, 45, 0.3);
}

.hover\:border-t-primary-30:hover{
  border-top-color: rgba(207, 38, 45, 0.3);
}

.hover\:border-r-primary-30:hover{
  border-right-color: rgba(207, 38, 45, 0.3);
}

.hover\:border-b-primary-30:hover{
  border-bottom-color: rgba(207, 38, 45, 0.3);
}

.hover\:border-l-primary-30:hover{
  border-left-color: rgba(207, 38, 45, 0.3);
}

.hover\:border-primary-light-30:hover{
  border-color: rgba(217, 81, 87, 0.3);
}

.hover\:border-t-primary-light-30:hover{
  border-top-color: rgba(217, 81, 87, 0.3);
}

.hover\:border-r-primary-light-30:hover{
  border-right-color: rgba(217, 81, 87, 0.3);
}

.hover\:border-b-primary-light-30:hover{
  border-bottom-color: rgba(217, 81, 87, 0.3);
}

.hover\:border-l-primary-light-30:hover{
  border-left-color: rgba(217, 81, 87, 0.3);
}

.hover\:border-primary-lighter-30:hover{
  border-color: rgba(226, 125, 129, 0.3);
}

.hover\:border-t-primary-lighter-30:hover{
  border-top-color: rgba(226, 125, 129, 0.3);
}

.hover\:border-r-primary-lighter-30:hover{
  border-right-color: rgba(226, 125, 129, 0.3);
}

.hover\:border-b-primary-lighter-30:hover{
  border-bottom-color: rgba(226, 125, 129, 0.3);
}

.hover\:border-l-primary-lighter-30:hover{
  border-left-color: rgba(226, 125, 129, 0.3);
}

.hover\:border-primary-lightest-30:hover{
  border-color: rgba(236, 168, 171, 0.3);
}

.hover\:border-t-primary-lightest-30:hover{
  border-top-color: rgba(236, 168, 171, 0.3);
}

.hover\:border-r-primary-lightest-30:hover{
  border-right-color: rgba(236, 168, 171, 0.3);
}

.hover\:border-b-primary-lightest-30:hover{
  border-bottom-color: rgba(236, 168, 171, 0.3);
}

.hover\:border-l-primary-lightest-30:hover{
  border-left-color: rgba(236, 168, 171, 0.3);
}

.hover\:border-secondary-darkest-30:hover{
  border-color: rgba(62, 69, 37, 0.3);
}

.hover\:border-t-secondary-darkest-30:hover{
  border-top-color: rgba(62, 69, 37, 0.3);
}

.hover\:border-r-secondary-darkest-30:hover{
  border-right-color: rgba(62, 69, 37, 0.3);
}

.hover\:border-b-secondary-darkest-30:hover{
  border-bottom-color: rgba(62, 69, 37, 0.3);
}

.hover\:border-l-secondary-darkest-30:hover{
  border-left-color: rgba(62, 69, 37, 0.3);
}

.hover\:border-secondary-darker-30:hover{
  border-color: rgba(94, 104, 55, 0.3);
}

.hover\:border-t-secondary-darker-30:hover{
  border-top-color: rgba(94, 104, 55, 0.3);
}

.hover\:border-r-secondary-darker-30:hover{
  border-right-color: rgba(94, 104, 55, 0.3);
}

.hover\:border-b-secondary-darker-30:hover{
  border-bottom-color: rgba(94, 104, 55, 0.3);
}

.hover\:border-l-secondary-darker-30:hover{
  border-left-color: rgba(94, 104, 55, 0.3);
}

.hover\:border-secondary-dark-30:hover{
  border-color: rgba(125, 138, 74, 0.3);
}

.hover\:border-t-secondary-dark-30:hover{
  border-top-color: rgba(125, 138, 74, 0.3);
}

.hover\:border-r-secondary-dark-30:hover{
  border-right-color: rgba(125, 138, 74, 0.3);
}

.hover\:border-b-secondary-dark-30:hover{
  border-bottom-color: rgba(125, 138, 74, 0.3);
}

.hover\:border-l-secondary-dark-30:hover{
  border-left-color: rgba(125, 138, 74, 0.3);
}

.hover\:border-secondary-30:hover{
  border-color: rgba(156, 173, 92, 0.3);
}

.hover\:border-t-secondary-30:hover{
  border-top-color: rgba(156, 173, 92, 0.3);
}

.hover\:border-r-secondary-30:hover{
  border-right-color: rgba(156, 173, 92, 0.3);
}

.hover\:border-b-secondary-30:hover{
  border-bottom-color: rgba(156, 173, 92, 0.3);
}

.hover\:border-l-secondary-30:hover{
  border-left-color: rgba(156, 173, 92, 0.3);
}

.hover\:border-secondary-light-30:hover{
  border-color: rgba(176, 189, 125, 0.3);
}

.hover\:border-t-secondary-light-30:hover{
  border-top-color: rgba(176, 189, 125, 0.3);
}

.hover\:border-r-secondary-light-30:hover{
  border-right-color: rgba(176, 189, 125, 0.3);
}

.hover\:border-b-secondary-light-30:hover{
  border-bottom-color: rgba(176, 189, 125, 0.3);
}

.hover\:border-l-secondary-light-30:hover{
  border-left-color: rgba(176, 189, 125, 0.3);
}

.hover\:border-secondary-lighter-30:hover{
  border-color: rgba(196, 206, 157, 0.3);
}

.hover\:border-t-secondary-lighter-30:hover{
  border-top-color: rgba(196, 206, 157, 0.3);
}

.hover\:border-r-secondary-lighter-30:hover{
  border-right-color: rgba(196, 206, 157, 0.3);
}

.hover\:border-b-secondary-lighter-30:hover{
  border-bottom-color: rgba(196, 206, 157, 0.3);
}

.hover\:border-l-secondary-lighter-30:hover{
  border-left-color: rgba(196, 206, 157, 0.3);
}

.hover\:border-secondary-lightest-30:hover{
  border-color: rgba(215, 222, 190, 0.3);
}

.hover\:border-t-secondary-lightest-30:hover{
  border-top-color: rgba(215, 222, 190, 0.3);
}

.hover\:border-r-secondary-lightest-30:hover{
  border-right-color: rgba(215, 222, 190, 0.3);
}

.hover\:border-b-secondary-lightest-30:hover{
  border-bottom-color: rgba(215, 222, 190, 0.3);
}

.hover\:border-l-secondary-lightest-30:hover{
  border-left-color: rgba(215, 222, 190, 0.3);
}

.hover\:border-tertiary-darkest-30:hover{
  border-color: rgba(15, 47, 33, 0.3);
}

.hover\:border-t-tertiary-darkest-30:hover{
  border-top-color: rgba(15, 47, 33, 0.3);
}

.hover\:border-r-tertiary-darkest-30:hover{
  border-right-color: rgba(15, 47, 33, 0.3);
}

.hover\:border-b-tertiary-darkest-30:hover{
  border-bottom-color: rgba(15, 47, 33, 0.3);
}

.hover\:border-l-tertiary-darkest-30:hover{
  border-left-color: rgba(15, 47, 33, 0.3);
}

.hover\:border-tertiary-darker-30:hover{
  border-color: rgba(26, 71, 49, 0.3);
}

.hover\:border-t-tertiary-darker-30:hover{
  border-top-color: rgba(26, 71, 49, 0.3);
}

.hover\:border-r-tertiary-darker-30:hover{
  border-right-color: rgba(26, 71, 49, 0.3);
}

.hover\:border-b-tertiary-darker-30:hover{
  border-bottom-color: rgba(26, 71, 49, 0.3);
}

.hover\:border-l-tertiary-darker-30:hover{
  border-left-color: rgba(26, 71, 49, 0.3);
}

.hover\:border-tertiary-dark-30:hover{
  border-color: rgba(31, 157, 85, 0.3);
}

.hover\:border-t-tertiary-dark-30:hover{
  border-top-color: rgba(31, 157, 85, 0.3);
}

.hover\:border-r-tertiary-dark-30:hover{
  border-right-color: rgba(31, 157, 85, 0.3);
}

.hover\:border-b-tertiary-dark-30:hover{
  border-bottom-color: rgba(31, 157, 85, 0.3);
}

.hover\:border-l-tertiary-dark-30:hover{
  border-left-color: rgba(31, 157, 85, 0.3);
}

.hover\:border-tertiary-30:hover{
  border-color: rgba(255, 197, 0, 0.3);
}

.hover\:border-t-tertiary-30:hover{
  border-top-color: rgba(255, 197, 0, 0.3);
}

.hover\:border-r-tertiary-30:hover{
  border-right-color: rgba(255, 197, 0, 0.3);
}

.hover\:border-b-tertiary-30:hover{
  border-bottom-color: rgba(255, 197, 0, 0.3);
}

.hover\:border-l-tertiary-30:hover{
  border-left-color: rgba(255, 197, 0, 0.3);
}

.hover\:border-tertiary-light-30:hover{
  border-color: rgba(81, 216, 138, 0.3);
}

.hover\:border-t-tertiary-light-30:hover{
  border-top-color: rgba(81, 216, 138, 0.3);
}

.hover\:border-r-tertiary-light-30:hover{
  border-right-color: rgba(81, 216, 138, 0.3);
}

.hover\:border-b-tertiary-light-30:hover{
  border-bottom-color: rgba(81, 216, 138, 0.3);
}

.hover\:border-l-tertiary-light-30:hover{
  border-left-color: rgba(81, 216, 138, 0.3);
}

.hover\:border-tertiary-lighter-30:hover{
  border-color: rgba(162, 245, 191, 0.3);
}

.hover\:border-t-tertiary-lighter-30:hover{
  border-top-color: rgba(162, 245, 191, 0.3);
}

.hover\:border-r-tertiary-lighter-30:hover{
  border-right-color: rgba(162, 245, 191, 0.3);
}

.hover\:border-b-tertiary-lighter-30:hover{
  border-bottom-color: rgba(162, 245, 191, 0.3);
}

.hover\:border-l-tertiary-lighter-30:hover{
  border-left-color: rgba(162, 245, 191, 0.3);
}

.hover\:border-tertiary-lightest-30:hover{
  border-color: rgba(227, 252, 236, 0.3);
}

.hover\:border-t-tertiary-lightest-30:hover{
  border-top-color: rgba(227, 252, 236, 0.3);
}

.hover\:border-r-tertiary-lightest-30:hover{
  border-right-color: rgba(227, 252, 236, 0.3);
}

.hover\:border-b-tertiary-lightest-30:hover{
  border-bottom-color: rgba(227, 252, 236, 0.3);
}

.hover\:border-l-tertiary-lightest-30:hover{
  border-left-color: rgba(227, 252, 236, 0.3);
}

.hover\:border-default-30:hover{
  border-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-t-default-30:hover{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-r-default-30:hover{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-b-default-30:hover{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.hover\:border-l-default-30:hover{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-border-30:focus{
  border-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-t-border-30:focus{
  border-top-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-r-border-30:focus{
  border-right-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-b-border-30:focus{
  border-bottom-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-l-border-30:focus{
  border-left-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-form-30:focus{
  border-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-t-form-30:focus{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-r-form-30:focus{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-b-form-30:focus{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-l-form-30:focus{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-form-active-30:focus{
  border-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-t-form-active-30:focus{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-r-form-active-30:focus{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-b-form-active-30:focus{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-l-form-active-30:focus{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-black-30:focus{
  border-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-t-black-30:focus{
  border-top-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-r-black-30:focus{
  border-right-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-b-black-30:focus{
  border-bottom-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-l-black-30:focus{
  border-left-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-grey-darkest-30:focus{
  border-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-t-grey-darkest-30:focus{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-r-grey-darkest-30:focus{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-b-grey-darkest-30:focus{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-l-grey-darkest-30:focus{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-grey-darker-30:focus{
  border-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-t-grey-darker-30:focus{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-r-grey-darker-30:focus{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-b-grey-darker-30:focus{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-l-grey-darker-30:focus{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-grey-dark-30:focus{
  border-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-t-grey-dark-30:focus{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-r-grey-dark-30:focus{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-b-grey-dark-30:focus{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-l-grey-dark-30:focus{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-grey-30:focus{
  border-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-t-grey-30:focus{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-r-grey-30:focus{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-b-grey-30:focus{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-l-grey-30:focus{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-grey-light-30:focus{
  border-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-t-grey-light-30:focus{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-r-grey-light-30:focus{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-b-grey-light-30:focus{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-l-grey-light-30:focus{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-grey-lighter-30:focus{
  border-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-t-grey-lighter-30:focus{
  border-top-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-r-grey-lighter-30:focus{
  border-right-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-b-grey-lighter-30:focus{
  border-bottom-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-l-grey-lighter-30:focus{
  border-left-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-grey-lightest-30:focus{
  border-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-t-grey-lightest-30:focus{
  border-top-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-r-grey-lightest-30:focus{
  border-right-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-b-grey-lightest-30:focus{
  border-bottom-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-l-grey-lightest-30:focus{
  border-left-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-white-30:focus{
  border-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-t-white-30:focus{
  border-top-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-r-white-30:focus{
  border-right-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-b-white-30:focus{
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-l-white-30:focus{
  border-left-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-red-30:focus{
  border-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-t-red-30:focus{
  border-top-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-r-red-30:focus{
  border-right-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-b-red-30:focus{
  border-bottom-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-l-red-30:focus{
  border-left-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-green-30:focus{
  border-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-t-green-30:focus{
  border-top-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-r-green-30:focus{
  border-right-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-b-green-30:focus{
  border-bottom-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-l-green-30:focus{
  border-left-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-blue-30:focus{
  border-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-t-blue-30:focus{
  border-top-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-r-blue-30:focus{
  border-right-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-b-blue-30:focus{
  border-bottom-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-l-blue-30:focus{
  border-left-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-orange-30:focus{
  border-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-t-orange-30:focus{
  border-top-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-r-orange-30:focus{
  border-right-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-b-orange-30:focus{
  border-bottom-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-l-orange-30:focus{
  border-left-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-primary-darkest-30:focus{
  border-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-t-primary-darkest-30:focus{
  border-top-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-r-primary-darkest-30:focus{
  border-right-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-b-primary-darkest-30:focus{
  border-bottom-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-l-primary-darkest-30:focus{
  border-left-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-primary-darker-30:focus{
  border-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-t-primary-darker-30:focus{
  border-top-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-r-primary-darker-30:focus{
  border-right-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-b-primary-darker-30:focus{
  border-bottom-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-l-primary-darker-30:focus{
  border-left-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-primary-dark-30:focus{
  border-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-t-primary-dark-30:focus{
  border-top-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-r-primary-dark-30:focus{
  border-right-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-b-primary-dark-30:focus{
  border-bottom-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-l-primary-dark-30:focus{
  border-left-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-primary-30:focus{
  border-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-t-primary-30:focus{
  border-top-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-r-primary-30:focus{
  border-right-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-b-primary-30:focus{
  border-bottom-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-l-primary-30:focus{
  border-left-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-primary-light-30:focus{
  border-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-t-primary-light-30:focus{
  border-top-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-r-primary-light-30:focus{
  border-right-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-b-primary-light-30:focus{
  border-bottom-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-l-primary-light-30:focus{
  border-left-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-primary-lighter-30:focus{
  border-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-t-primary-lighter-30:focus{
  border-top-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-r-primary-lighter-30:focus{
  border-right-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-b-primary-lighter-30:focus{
  border-bottom-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-l-primary-lighter-30:focus{
  border-left-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-primary-lightest-30:focus{
  border-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-t-primary-lightest-30:focus{
  border-top-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-r-primary-lightest-30:focus{
  border-right-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-b-primary-lightest-30:focus{
  border-bottom-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-l-primary-lightest-30:focus{
  border-left-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-secondary-darkest-30:focus{
  border-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-t-secondary-darkest-30:focus{
  border-top-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-r-secondary-darkest-30:focus{
  border-right-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-b-secondary-darkest-30:focus{
  border-bottom-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-l-secondary-darkest-30:focus{
  border-left-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-secondary-darker-30:focus{
  border-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-t-secondary-darker-30:focus{
  border-top-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-r-secondary-darker-30:focus{
  border-right-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-b-secondary-darker-30:focus{
  border-bottom-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-l-secondary-darker-30:focus{
  border-left-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-secondary-dark-30:focus{
  border-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-t-secondary-dark-30:focus{
  border-top-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-r-secondary-dark-30:focus{
  border-right-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-b-secondary-dark-30:focus{
  border-bottom-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-l-secondary-dark-30:focus{
  border-left-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-secondary-30:focus{
  border-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-t-secondary-30:focus{
  border-top-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-r-secondary-30:focus{
  border-right-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-b-secondary-30:focus{
  border-bottom-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-l-secondary-30:focus{
  border-left-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-secondary-light-30:focus{
  border-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-t-secondary-light-30:focus{
  border-top-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-r-secondary-light-30:focus{
  border-right-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-b-secondary-light-30:focus{
  border-bottom-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-l-secondary-light-30:focus{
  border-left-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-secondary-lighter-30:focus{
  border-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-t-secondary-lighter-30:focus{
  border-top-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-r-secondary-lighter-30:focus{
  border-right-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-b-secondary-lighter-30:focus{
  border-bottom-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-l-secondary-lighter-30:focus{
  border-left-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-secondary-lightest-30:focus{
  border-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-t-secondary-lightest-30:focus{
  border-top-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-r-secondary-lightest-30:focus{
  border-right-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-b-secondary-lightest-30:focus{
  border-bottom-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-l-secondary-lightest-30:focus{
  border-left-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-tertiary-darkest-30:focus{
  border-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-t-tertiary-darkest-30:focus{
  border-top-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-r-tertiary-darkest-30:focus{
  border-right-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-b-tertiary-darkest-30:focus{
  border-bottom-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-l-tertiary-darkest-30:focus{
  border-left-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-tertiary-darker-30:focus{
  border-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-t-tertiary-darker-30:focus{
  border-top-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-r-tertiary-darker-30:focus{
  border-right-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-b-tertiary-darker-30:focus{
  border-bottom-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-l-tertiary-darker-30:focus{
  border-left-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-tertiary-dark-30:focus{
  border-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-t-tertiary-dark-30:focus{
  border-top-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-r-tertiary-dark-30:focus{
  border-right-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-b-tertiary-dark-30:focus{
  border-bottom-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-l-tertiary-dark-30:focus{
  border-left-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-tertiary-30:focus{
  border-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-t-tertiary-30:focus{
  border-top-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-r-tertiary-30:focus{
  border-right-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-b-tertiary-30:focus{
  border-bottom-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-l-tertiary-30:focus{
  border-left-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-tertiary-light-30:focus{
  border-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-t-tertiary-light-30:focus{
  border-top-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-r-tertiary-light-30:focus{
  border-right-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-b-tertiary-light-30:focus{
  border-bottom-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-l-tertiary-light-30:focus{
  border-left-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-tertiary-lighter-30:focus{
  border-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-t-tertiary-lighter-30:focus{
  border-top-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-r-tertiary-lighter-30:focus{
  border-right-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-b-tertiary-lighter-30:focus{
  border-bottom-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-l-tertiary-lighter-30:focus{
  border-left-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-tertiary-lightest-30:focus{
  border-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-t-tertiary-lightest-30:focus{
  border-top-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-r-tertiary-lightest-30:focus{
  border-right-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-b-tertiary-lightest-30:focus{
  border-bottom-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-l-tertiary-lightest-30:focus{
  border-left-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-default-30:focus{
  border-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-t-default-30:focus{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-r-default-30:focus{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-b-default-30:focus{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-l-default-30:focus{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-border-30:focus{
  border-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-t-border-30:focus{
  border-top-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-r-border-30:focus{
  border-right-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-b-border-30:focus{
  border-bottom-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-l-border-30:focus{
  border-left-color: rgba(230, 235, 245, 0.3);
}

.focus\:border-form-30:focus{
  border-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-t-form-30:focus{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-r-form-30:focus{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-b-form-30:focus{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-l-form-30:focus{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-form-active-30:focus{
  border-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-t-form-active-30:focus{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-r-form-active-30:focus{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-b-form-active-30:focus{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-l-form-active-30:focus{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-black-30:focus{
  border-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-t-black-30:focus{
  border-top-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-r-black-30:focus{
  border-right-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-b-black-30:focus{
  border-bottom-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-l-black-30:focus{
  border-left-color: rgba(33, 37, 41, 0.3);
}

.focus\:border-grey-darkest-30:focus{
  border-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-t-grey-darkest-30:focus{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-r-grey-darkest-30:focus{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-b-grey-darkest-30:focus{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-l-grey-darkest-30:focus{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-grey-darker-30:focus{
  border-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-t-grey-darker-30:focus{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-r-grey-darker-30:focus{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-b-grey-darker-30:focus{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-l-grey-darker-30:focus{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.focus\:border-grey-dark-30:focus{
  border-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-t-grey-dark-30:focus{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-r-grey-dark-30:focus{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-b-grey-dark-30:focus{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-l-grey-dark-30:focus{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.focus\:border-grey-30:focus{
  border-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-t-grey-30:focus{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-r-grey-30:focus{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-b-grey-30:focus{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-l-grey-30:focus{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.focus\:border-grey-light-30:focus{
  border-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-t-grey-light-30:focus{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-r-grey-light-30:focus{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-b-grey-light-30:focus{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-l-grey-light-30:focus{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-grey-lighter-30:focus{
  border-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-t-grey-lighter-30:focus{
  border-top-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-r-grey-lighter-30:focus{
  border-right-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-b-grey-lighter-30:focus{
  border-bottom-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-l-grey-lighter-30:focus{
  border-left-color: rgba(222, 228, 233, 0.3);
}

.focus\:border-grey-lightest-30:focus{
  border-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-t-grey-lightest-30:focus{
  border-top-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-r-grey-lightest-30:focus{
  border-right-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-b-grey-lightest-30:focus{
  border-bottom-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-l-grey-lightest-30:focus{
  border-left-color: rgba(244, 246, 249, 0.3);
}

.focus\:border-white-30:focus{
  border-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-t-white-30:focus{
  border-top-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-r-white-30:focus{
  border-right-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-b-white-30:focus{
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-l-white-30:focus{
  border-left-color: rgba(255, 255, 255, 0.3);
}

.focus\:border-red-30:focus{
  border-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-t-red-30:focus{
  border-top-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-r-red-30:focus{
  border-right-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-b-red-30:focus{
  border-bottom-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-l-red-30:focus{
  border-left-color: rgba(211, 26, 8, 0.3);
}

.focus\:border-green-30:focus{
  border-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-t-green-30:focus{
  border-top-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-r-green-30:focus{
  border-right-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-b-green-30:focus{
  border-bottom-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-l-green-30:focus{
  border-left-color: rgba(102, 187, 8, 0.3);
}

.focus\:border-blue-30:focus{
  border-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-t-blue-30:focus{
  border-top-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-r-blue-30:focus{
  border-right-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-b-blue-30:focus{
  border-bottom-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-l-blue-30:focus{
  border-left-color: rgba(31, 168, 226, 0.3);
}

.focus\:border-orange-30:focus{
  border-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-t-orange-30:focus{
  border-top-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-r-orange-30:focus{
  border-right-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-b-orange-30:focus{
  border-bottom-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-l-orange-30:focus{
  border-left-color: rgba(247, 148, 14, 0.3);
}

.focus\:border-primary-darkest-30:focus{
  border-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-t-primary-darkest-30:focus{
  border-top-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-r-primary-darkest-30:focus{
  border-right-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-b-primary-darkest-30:focus{
  border-bottom-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-l-primary-darkest-30:focus{
  border-left-color: rgba(83, 15, 18, 0.3);
}

.focus\:border-primary-darker-30:focus{
  border-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-t-primary-darker-30:focus{
  border-top-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-r-primary-darker-30:focus{
  border-right-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-b-primary-darker-30:focus{
  border-bottom-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-l-primary-darker-30:focus{
  border-left-color: rgba(124, 23, 27, 0.3);
}

.focus\:border-primary-dark-30:focus{
  border-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-t-primary-dark-30:focus{
  border-top-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-r-primary-dark-30:focus{
  border-right-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-b-primary-dark-30:focus{
  border-bottom-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-l-primary-dark-30:focus{
  border-left-color: rgba(166, 30, 36, 0.3);
}

.focus\:border-primary-30:focus{
  border-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-t-primary-30:focus{
  border-top-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-r-primary-30:focus{
  border-right-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-b-primary-30:focus{
  border-bottom-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-l-primary-30:focus{
  border-left-color: rgba(207, 38, 45, 0.3);
}

.focus\:border-primary-light-30:focus{
  border-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-t-primary-light-30:focus{
  border-top-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-r-primary-light-30:focus{
  border-right-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-b-primary-light-30:focus{
  border-bottom-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-l-primary-light-30:focus{
  border-left-color: rgba(217, 81, 87, 0.3);
}

.focus\:border-primary-lighter-30:focus{
  border-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-t-primary-lighter-30:focus{
  border-top-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-r-primary-lighter-30:focus{
  border-right-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-b-primary-lighter-30:focus{
  border-bottom-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-l-primary-lighter-30:focus{
  border-left-color: rgba(226, 125, 129, 0.3);
}

.focus\:border-primary-lightest-30:focus{
  border-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-t-primary-lightest-30:focus{
  border-top-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-r-primary-lightest-30:focus{
  border-right-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-b-primary-lightest-30:focus{
  border-bottom-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-l-primary-lightest-30:focus{
  border-left-color: rgba(236, 168, 171, 0.3);
}

.focus\:border-secondary-darkest-30:focus{
  border-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-t-secondary-darkest-30:focus{
  border-top-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-r-secondary-darkest-30:focus{
  border-right-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-b-secondary-darkest-30:focus{
  border-bottom-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-l-secondary-darkest-30:focus{
  border-left-color: rgba(62, 69, 37, 0.3);
}

.focus\:border-secondary-darker-30:focus{
  border-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-t-secondary-darker-30:focus{
  border-top-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-r-secondary-darker-30:focus{
  border-right-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-b-secondary-darker-30:focus{
  border-bottom-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-l-secondary-darker-30:focus{
  border-left-color: rgba(94, 104, 55, 0.3);
}

.focus\:border-secondary-dark-30:focus{
  border-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-t-secondary-dark-30:focus{
  border-top-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-r-secondary-dark-30:focus{
  border-right-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-b-secondary-dark-30:focus{
  border-bottom-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-l-secondary-dark-30:focus{
  border-left-color: rgba(125, 138, 74, 0.3);
}

.focus\:border-secondary-30:focus{
  border-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-t-secondary-30:focus{
  border-top-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-r-secondary-30:focus{
  border-right-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-b-secondary-30:focus{
  border-bottom-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-l-secondary-30:focus{
  border-left-color: rgba(156, 173, 92, 0.3);
}

.focus\:border-secondary-light-30:focus{
  border-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-t-secondary-light-30:focus{
  border-top-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-r-secondary-light-30:focus{
  border-right-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-b-secondary-light-30:focus{
  border-bottom-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-l-secondary-light-30:focus{
  border-left-color: rgba(176, 189, 125, 0.3);
}

.focus\:border-secondary-lighter-30:focus{
  border-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-t-secondary-lighter-30:focus{
  border-top-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-r-secondary-lighter-30:focus{
  border-right-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-b-secondary-lighter-30:focus{
  border-bottom-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-l-secondary-lighter-30:focus{
  border-left-color: rgba(196, 206, 157, 0.3);
}

.focus\:border-secondary-lightest-30:focus{
  border-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-t-secondary-lightest-30:focus{
  border-top-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-r-secondary-lightest-30:focus{
  border-right-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-b-secondary-lightest-30:focus{
  border-bottom-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-l-secondary-lightest-30:focus{
  border-left-color: rgba(215, 222, 190, 0.3);
}

.focus\:border-tertiary-darkest-30:focus{
  border-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-t-tertiary-darkest-30:focus{
  border-top-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-r-tertiary-darkest-30:focus{
  border-right-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-b-tertiary-darkest-30:focus{
  border-bottom-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-l-tertiary-darkest-30:focus{
  border-left-color: rgba(15, 47, 33, 0.3);
}

.focus\:border-tertiary-darker-30:focus{
  border-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-t-tertiary-darker-30:focus{
  border-top-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-r-tertiary-darker-30:focus{
  border-right-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-b-tertiary-darker-30:focus{
  border-bottom-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-l-tertiary-darker-30:focus{
  border-left-color: rgba(26, 71, 49, 0.3);
}

.focus\:border-tertiary-dark-30:focus{
  border-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-t-tertiary-dark-30:focus{
  border-top-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-r-tertiary-dark-30:focus{
  border-right-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-b-tertiary-dark-30:focus{
  border-bottom-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-l-tertiary-dark-30:focus{
  border-left-color: rgba(31, 157, 85, 0.3);
}

.focus\:border-tertiary-30:focus{
  border-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-t-tertiary-30:focus{
  border-top-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-r-tertiary-30:focus{
  border-right-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-b-tertiary-30:focus{
  border-bottom-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-l-tertiary-30:focus{
  border-left-color: rgba(255, 197, 0, 0.3);
}

.focus\:border-tertiary-light-30:focus{
  border-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-t-tertiary-light-30:focus{
  border-top-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-r-tertiary-light-30:focus{
  border-right-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-b-tertiary-light-30:focus{
  border-bottom-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-l-tertiary-light-30:focus{
  border-left-color: rgba(81, 216, 138, 0.3);
}

.focus\:border-tertiary-lighter-30:focus{
  border-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-t-tertiary-lighter-30:focus{
  border-top-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-r-tertiary-lighter-30:focus{
  border-right-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-b-tertiary-lighter-30:focus{
  border-bottom-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-l-tertiary-lighter-30:focus{
  border-left-color: rgba(162, 245, 191, 0.3);
}

.focus\:border-tertiary-lightest-30:focus{
  border-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-t-tertiary-lightest-30:focus{
  border-top-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-r-tertiary-lightest-30:focus{
  border-right-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-b-tertiary-lightest-30:focus{
  border-bottom-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-l-tertiary-lightest-30:focus{
  border-left-color: rgba(227, 252, 236, 0.3);
}

.focus\:border-default-30:focus{
  border-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-t-default-30:focus{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-r-default-30:focus{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-b-default-30:focus{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.focus\:border-l-default-30:focus{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-border-30{
  border-color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:border-t-border-30{
  border-top-color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:border-r-border-30{
  border-right-color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:border-b-border-30{
  border-bottom-color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:border-l-border-30{
  border-left-color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:border-form-30{
  border-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-t-form-30{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-r-form-30{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-b-form-30{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-l-form-30{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-form-active-30{
  border-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-t-form-active-30{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-r-form-active-30{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-b-form-active-30{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-l-form-active-30{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-black-30{
  border-color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:border-t-black-30{
  border-top-color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:border-r-black-30{
  border-right-color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:border-b-black-30{
  border-bottom-color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:border-l-black-30{
  border-left-color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:border-grey-darkest-30{
  border-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-t-grey-darkest-30{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-r-grey-darkest-30{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-b-grey-darkest-30{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-l-grey-darkest-30{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-grey-darker-30{
  border-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-t-grey-darker-30{
  border-top-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-r-grey-darker-30{
  border-right-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-b-grey-darker-30{
  border-bottom-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-l-grey-darker-30{
  border-left-color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:border-grey-dark-30{
  border-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-t-grey-dark-30{
  border-top-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-r-grey-dark-30{
  border-right-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-b-grey-dark-30{
  border-bottom-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-l-grey-dark-30{
  border-left-color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:border-grey-30{
  border-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-t-grey-30{
  border-top-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-r-grey-30{
  border-right-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-b-grey-30{
  border-bottom-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-l-grey-30{
  border-left-color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:border-grey-light-30{
  border-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-t-grey-light-30{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-r-grey-light-30{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-b-grey-light-30{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-l-grey-light-30{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-grey-lighter-30{
  border-color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:border-t-grey-lighter-30{
  border-top-color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:border-r-grey-lighter-30{
  border-right-color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:border-b-grey-lighter-30{
  border-bottom-color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:border-l-grey-lighter-30{
  border-left-color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:border-grey-lightest-30{
  border-color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:border-t-grey-lightest-30{
  border-top-color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:border-r-grey-lightest-30{
  border-right-color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:border-b-grey-lightest-30{
  border-bottom-color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:border-l-grey-lightest-30{
  border-left-color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:border-white-30{
  border-color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:border-t-white-30{
  border-top-color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:border-r-white-30{
  border-right-color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:border-b-white-30{
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:border-l-white-30{
  border-left-color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:border-red-30{
  border-color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:border-t-red-30{
  border-top-color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:border-r-red-30{
  border-right-color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:border-b-red-30{
  border-bottom-color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:border-l-red-30{
  border-left-color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:border-green-30{
  border-color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:border-t-green-30{
  border-top-color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:border-r-green-30{
  border-right-color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:border-b-green-30{
  border-bottom-color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:border-l-green-30{
  border-left-color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:border-blue-30{
  border-color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:border-t-blue-30{
  border-top-color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:border-r-blue-30{
  border-right-color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:border-b-blue-30{
  border-bottom-color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:border-l-blue-30{
  border-left-color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:border-orange-30{
  border-color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:border-t-orange-30{
  border-top-color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:border-r-orange-30{
  border-right-color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:border-b-orange-30{
  border-bottom-color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:border-l-orange-30{
  border-left-color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:border-primary-darkest-30{
  border-color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:border-t-primary-darkest-30{
  border-top-color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:border-r-primary-darkest-30{
  border-right-color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:border-b-primary-darkest-30{
  border-bottom-color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:border-l-primary-darkest-30{
  border-left-color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:border-primary-darker-30{
  border-color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:border-t-primary-darker-30{
  border-top-color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:border-r-primary-darker-30{
  border-right-color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:border-b-primary-darker-30{
  border-bottom-color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:border-l-primary-darker-30{
  border-left-color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:border-primary-dark-30{
  border-color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:border-t-primary-dark-30{
  border-top-color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:border-r-primary-dark-30{
  border-right-color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:border-b-primary-dark-30{
  border-bottom-color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:border-l-primary-dark-30{
  border-left-color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:border-primary-30{
  border-color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:border-t-primary-30{
  border-top-color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:border-r-primary-30{
  border-right-color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:border-b-primary-30{
  border-bottom-color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:border-l-primary-30{
  border-left-color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:border-primary-light-30{
  border-color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:border-t-primary-light-30{
  border-top-color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:border-r-primary-light-30{
  border-right-color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:border-b-primary-light-30{
  border-bottom-color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:border-l-primary-light-30{
  border-left-color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:border-primary-lighter-30{
  border-color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:border-t-primary-lighter-30{
  border-top-color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:border-r-primary-lighter-30{
  border-right-color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:border-b-primary-lighter-30{
  border-bottom-color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:border-l-primary-lighter-30{
  border-left-color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:border-primary-lightest-30{
  border-color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:border-t-primary-lightest-30{
  border-top-color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:border-r-primary-lightest-30{
  border-right-color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:border-b-primary-lightest-30{
  border-bottom-color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:border-l-primary-lightest-30{
  border-left-color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:border-secondary-darkest-30{
  border-color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:border-t-secondary-darkest-30{
  border-top-color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:border-r-secondary-darkest-30{
  border-right-color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:border-b-secondary-darkest-30{
  border-bottom-color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:border-l-secondary-darkest-30{
  border-left-color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:border-secondary-darker-30{
  border-color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:border-t-secondary-darker-30{
  border-top-color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:border-r-secondary-darker-30{
  border-right-color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:border-b-secondary-darker-30{
  border-bottom-color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:border-l-secondary-darker-30{
  border-left-color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:border-secondary-dark-30{
  border-color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:border-t-secondary-dark-30{
  border-top-color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:border-r-secondary-dark-30{
  border-right-color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:border-b-secondary-dark-30{
  border-bottom-color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:border-l-secondary-dark-30{
  border-left-color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:border-secondary-30{
  border-color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:border-t-secondary-30{
  border-top-color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:border-r-secondary-30{
  border-right-color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:border-b-secondary-30{
  border-bottom-color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:border-l-secondary-30{
  border-left-color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:border-secondary-light-30{
  border-color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:border-t-secondary-light-30{
  border-top-color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:border-r-secondary-light-30{
  border-right-color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:border-b-secondary-light-30{
  border-bottom-color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:border-l-secondary-light-30{
  border-left-color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:border-secondary-lighter-30{
  border-color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:border-t-secondary-lighter-30{
  border-top-color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:border-r-secondary-lighter-30{
  border-right-color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:border-b-secondary-lighter-30{
  border-bottom-color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:border-l-secondary-lighter-30{
  border-left-color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:border-secondary-lightest-30{
  border-color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:border-t-secondary-lightest-30{
  border-top-color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:border-r-secondary-lightest-30{
  border-right-color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:border-b-secondary-lightest-30{
  border-bottom-color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:border-l-secondary-lightest-30{
  border-left-color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:border-tertiary-darkest-30{
  border-color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-darkest-30{
  border-top-color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-darkest-30{
  border-right-color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-darkest-30{
  border-bottom-color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-darkest-30{
  border-left-color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:border-tertiary-darker-30{
  border-color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-darker-30{
  border-top-color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-darker-30{
  border-right-color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-darker-30{
  border-bottom-color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-darker-30{
  border-left-color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:border-tertiary-dark-30{
  border-color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-dark-30{
  border-top-color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-dark-30{
  border-right-color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-dark-30{
  border-bottom-color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-dark-30{
  border-left-color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:border-tertiary-30{
  border-color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-30{
  border-top-color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-30{
  border-right-color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-30{
  border-bottom-color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-30{
  border-left-color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:border-tertiary-light-30{
  border-color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-light-30{
  border-top-color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-light-30{
  border-right-color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-light-30{
  border-bottom-color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-light-30{
  border-left-color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:border-tertiary-lighter-30{
  border-color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-lighter-30{
  border-top-color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-lighter-30{
  border-right-color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-lighter-30{
  border-bottom-color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-lighter-30{
  border-left-color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:border-tertiary-lightest-30{
  border-color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:border-t-tertiary-lightest-30{
  border-top-color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:border-r-tertiary-lightest-30{
  border-right-color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:border-b-tertiary-lightest-30{
  border-bottom-color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:border-l-tertiary-lightest-30{
  border-left-color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:border-default-30{
  border-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-t-default-30{
  border-top-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-r-default-30{
  border-right-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-b-default-30{
  border-bottom-color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:border-l-default-30{
  border-left-color: rgba(179, 188, 197, 0.3);
}

.text-border-30{
  color: rgba(230, 235, 245, 0.3);
}

.text-form-30{
  color: rgba(121, 130, 139, 0.3);
}

.text-form-active-30{
  color: rgba(66, 80, 92, 0.3);
}

.text-black-30{
  color: rgba(33, 37, 41, 0.3);
}

.text-grey-darkest-30{
  color: rgba(154, 165, 192, 0.3);
}

.text-grey-darker-30{
  color: rgba(154, 165, 192, 0.3);
}

.text-grey-dark-30{
  color: rgba(66, 80, 92, 0.3);
}

.text-grey-30{
  color: rgba(121, 130, 139, 0.3);
}

.text-grey-light-30{
  color: rgba(179, 188, 197, 0.3);
}

.text-grey-lighter-30{
  color: rgba(222, 228, 233, 0.3);
}

.text-grey-lightest-30{
  color: rgba(244, 246, 249, 0.3);
}

.text-white-30{
  color: rgba(255, 255, 255, 0.3);
}

.text-red-30{
  color: rgba(211, 26, 8, 0.3);
}

.text-green-30{
  color: rgba(102, 187, 8, 0.3);
}

.text-blue-30{
  color: rgba(31, 168, 226, 0.3);
}

.text-orange-30{
  color: rgba(247, 148, 14, 0.3);
}

.text-primary-darkest-30{
  color: rgba(83, 15, 18, 0.3);
}

.text-primary-darker-30{
  color: rgba(124, 23, 27, 0.3);
}

.text-primary-dark-30{
  color: rgba(166, 30, 36, 0.3);
}

.text-primary-30{
  color: rgba(207, 38, 45, 0.3);
}

.text-primary-light-30{
  color: rgba(217, 81, 87, 0.3);
}

.text-primary-lighter-30{
  color: rgba(226, 125, 129, 0.3);
}

.text-primary-lightest-30{
  color: rgba(236, 168, 171, 0.3);
}

.text-secondary-darkest-30{
  color: rgba(62, 69, 37, 0.3);
}

.text-secondary-darker-30{
  color: rgba(94, 104, 55, 0.3);
}

.text-secondary-dark-30{
  color: rgba(125, 138, 74, 0.3);
}

.text-secondary-30{
  color: rgba(156, 173, 92, 0.3);
}

.text-secondary-light-30{
  color: rgba(176, 189, 125, 0.3);
}

.text-secondary-lighter-30{
  color: rgba(196, 206, 157, 0.3);
}

.text-secondary-lightest-30{
  color: rgba(215, 222, 190, 0.3);
}

.text-tertiary-darkest-30{
  color: rgba(15, 47, 33, 0.3);
}

.text-tertiary-darker-30{
  color: rgba(26, 71, 49, 0.3);
}

.text-tertiary-dark-30{
  color: rgba(31, 157, 85, 0.3);
}

.text-tertiary-30{
  color: rgba(255, 197, 0, 0.3);
}

.text-tertiary-light-30{
  color: rgba(81, 216, 138, 0.3);
}

.text-tertiary-lighter-30{
  color: rgba(162, 245, 191, 0.3);
}

.text-tertiary-lightest-30{
  color: rgba(227, 252, 236, 0.3);
}

.hover\:text-border-30:hover{
  color: rgba(230, 235, 245, 0.3);
}

.hover\:text-form-30:hover{
  color: rgba(121, 130, 139, 0.3);
}

.hover\:text-form-active-30:hover{
  color: rgba(66, 80, 92, 0.3);
}

.hover\:text-black-30:hover{
  color: rgba(33, 37, 41, 0.3);
}

.hover\:text-grey-darkest-30:hover{
  color: rgba(154, 165, 192, 0.3);
}

.hover\:text-grey-darker-30:hover{
  color: rgba(154, 165, 192, 0.3);
}

.hover\:text-grey-dark-30:hover{
  color: rgba(66, 80, 92, 0.3);
}

.hover\:text-grey-30:hover{
  color: rgba(121, 130, 139, 0.3);
}

.hover\:text-grey-light-30:hover{
  color: rgba(179, 188, 197, 0.3);
}

.hover\:text-grey-lighter-30:hover{
  color: rgba(222, 228, 233, 0.3);
}

.hover\:text-grey-lightest-30:hover{
  color: rgba(244, 246, 249, 0.3);
}

.hover\:text-white-30:hover{
  color: rgba(255, 255, 255, 0.3);
}

.hover\:text-red-30:hover{
  color: rgba(211, 26, 8, 0.3);
}

.hover\:text-green-30:hover{
  color: rgba(102, 187, 8, 0.3);
}

.hover\:text-blue-30:hover{
  color: rgba(31, 168, 226, 0.3);
}

.hover\:text-orange-30:hover{
  color: rgba(247, 148, 14, 0.3);
}

.hover\:text-primary-darkest-30:hover{
  color: rgba(83, 15, 18, 0.3);
}

.hover\:text-primary-darker-30:hover{
  color: rgba(124, 23, 27, 0.3);
}

.hover\:text-primary-dark-30:hover{
  color: rgba(166, 30, 36, 0.3);
}

.hover\:text-primary-30:hover{
  color: rgba(207, 38, 45, 0.3);
}

.hover\:text-primary-light-30:hover{
  color: rgba(217, 81, 87, 0.3);
}

.hover\:text-primary-lighter-30:hover{
  color: rgba(226, 125, 129, 0.3);
}

.hover\:text-primary-lightest-30:hover{
  color: rgba(236, 168, 171, 0.3);
}

.hover\:text-secondary-darkest-30:hover{
  color: rgba(62, 69, 37, 0.3);
}

.hover\:text-secondary-darker-30:hover{
  color: rgba(94, 104, 55, 0.3);
}

.hover\:text-secondary-dark-30:hover{
  color: rgba(125, 138, 74, 0.3);
}

.hover\:text-secondary-30:hover{
  color: rgba(156, 173, 92, 0.3);
}

.hover\:text-secondary-light-30:hover{
  color: rgba(176, 189, 125, 0.3);
}

.hover\:text-secondary-lighter-30:hover{
  color: rgba(196, 206, 157, 0.3);
}

.hover\:text-secondary-lightest-30:hover{
  color: rgba(215, 222, 190, 0.3);
}

.hover\:text-tertiary-darkest-30:hover{
  color: rgba(15, 47, 33, 0.3);
}

.hover\:text-tertiary-darker-30:hover{
  color: rgba(26, 71, 49, 0.3);
}

.hover\:text-tertiary-dark-30:hover{
  color: rgba(31, 157, 85, 0.3);
}

.hover\:text-tertiary-30:hover{
  color: rgba(255, 197, 0, 0.3);
}

.hover\:text-tertiary-light-30:hover{
  color: rgba(81, 216, 138, 0.3);
}

.hover\:text-tertiary-lighter-30:hover{
  color: rgba(162, 245, 191, 0.3);
}

.hover\:text-tertiary-lightest-30:hover{
  color: rgba(227, 252, 236, 0.3);
}

.focus\:text-border-30:focus{
  color: rgba(230, 235, 245, 0.3);
}

.focus\:text-form-30:focus{
  color: rgba(121, 130, 139, 0.3);
}

.focus\:text-form-active-30:focus{
  color: rgba(66, 80, 92, 0.3);
}

.focus\:text-black-30:focus{
  color: rgba(33, 37, 41, 0.3);
}

.focus\:text-grey-darkest-30:focus{
  color: rgba(154, 165, 192, 0.3);
}

.focus\:text-grey-darker-30:focus{
  color: rgba(154, 165, 192, 0.3);
}

.focus\:text-grey-dark-30:focus{
  color: rgba(66, 80, 92, 0.3);
}

.focus\:text-grey-30:focus{
  color: rgba(121, 130, 139, 0.3);
}

.focus\:text-grey-light-30:focus{
  color: rgba(179, 188, 197, 0.3);
}

.focus\:text-grey-lighter-30:focus{
  color: rgba(222, 228, 233, 0.3);
}

.focus\:text-grey-lightest-30:focus{
  color: rgba(244, 246, 249, 0.3);
}

.focus\:text-white-30:focus{
  color: rgba(255, 255, 255, 0.3);
}

.focus\:text-red-30:focus{
  color: rgba(211, 26, 8, 0.3);
}

.focus\:text-green-30:focus{
  color: rgba(102, 187, 8, 0.3);
}

.focus\:text-blue-30:focus{
  color: rgba(31, 168, 226, 0.3);
}

.focus\:text-orange-30:focus{
  color: rgba(247, 148, 14, 0.3);
}

.focus\:text-primary-darkest-30:focus{
  color: rgba(83, 15, 18, 0.3);
}

.focus\:text-primary-darker-30:focus{
  color: rgba(124, 23, 27, 0.3);
}

.focus\:text-primary-dark-30:focus{
  color: rgba(166, 30, 36, 0.3);
}

.focus\:text-primary-30:focus{
  color: rgba(207, 38, 45, 0.3);
}

.focus\:text-primary-light-30:focus{
  color: rgba(217, 81, 87, 0.3);
}

.focus\:text-primary-lighter-30:focus{
  color: rgba(226, 125, 129, 0.3);
}

.focus\:text-primary-lightest-30:focus{
  color: rgba(236, 168, 171, 0.3);
}

.focus\:text-secondary-darkest-30:focus{
  color: rgba(62, 69, 37, 0.3);
}

.focus\:text-secondary-darker-30:focus{
  color: rgba(94, 104, 55, 0.3);
}

.focus\:text-secondary-dark-30:focus{
  color: rgba(125, 138, 74, 0.3);
}

.focus\:text-secondary-30:focus{
  color: rgba(156, 173, 92, 0.3);
}

.focus\:text-secondary-light-30:focus{
  color: rgba(176, 189, 125, 0.3);
}

.focus\:text-secondary-lighter-30:focus{
  color: rgba(196, 206, 157, 0.3);
}

.focus\:text-secondary-lightest-30:focus{
  color: rgba(215, 222, 190, 0.3);
}

.focus\:text-tertiary-darkest-30:focus{
  color: rgba(15, 47, 33, 0.3);
}

.focus\:text-tertiary-darker-30:focus{
  color: rgba(26, 71, 49, 0.3);
}

.focus\:text-tertiary-dark-30:focus{
  color: rgba(31, 157, 85, 0.3);
}

.focus\:text-tertiary-30:focus{
  color: rgba(255, 197, 0, 0.3);
}

.focus\:text-tertiary-light-30:focus{
  color: rgba(81, 216, 138, 0.3);
}

.focus\:text-tertiary-lighter-30:focus{
  color: rgba(162, 245, 191, 0.3);
}

.focus\:text-tertiary-lightest-30:focus{
  color: rgba(227, 252, 236, 0.3);
}

.focus\:text-border-30:focus{
  color: rgba(230, 235, 245, 0.3);
}

.focus\:text-form-30:focus{
  color: rgba(121, 130, 139, 0.3);
}

.focus\:text-form-active-30:focus{
  color: rgba(66, 80, 92, 0.3);
}

.focus\:text-black-30:focus{
  color: rgba(33, 37, 41, 0.3);
}

.focus\:text-grey-darkest-30:focus{
  color: rgba(154, 165, 192, 0.3);
}

.focus\:text-grey-darker-30:focus{
  color: rgba(154, 165, 192, 0.3);
}

.focus\:text-grey-dark-30:focus{
  color: rgba(66, 80, 92, 0.3);
}

.focus\:text-grey-30:focus{
  color: rgba(121, 130, 139, 0.3);
}

.focus\:text-grey-light-30:focus{
  color: rgba(179, 188, 197, 0.3);
}

.focus\:text-grey-lighter-30:focus{
  color: rgba(222, 228, 233, 0.3);
}

.focus\:text-grey-lightest-30:focus{
  color: rgba(244, 246, 249, 0.3);
}

.focus\:text-white-30:focus{
  color: rgba(255, 255, 255, 0.3);
}

.focus\:text-red-30:focus{
  color: rgba(211, 26, 8, 0.3);
}

.focus\:text-green-30:focus{
  color: rgba(102, 187, 8, 0.3);
}

.focus\:text-blue-30:focus{
  color: rgba(31, 168, 226, 0.3);
}

.focus\:text-orange-30:focus{
  color: rgba(247, 148, 14, 0.3);
}

.focus\:text-primary-darkest-30:focus{
  color: rgba(83, 15, 18, 0.3);
}

.focus\:text-primary-darker-30:focus{
  color: rgba(124, 23, 27, 0.3);
}

.focus\:text-primary-dark-30:focus{
  color: rgba(166, 30, 36, 0.3);
}

.focus\:text-primary-30:focus{
  color: rgba(207, 38, 45, 0.3);
}

.focus\:text-primary-light-30:focus{
  color: rgba(217, 81, 87, 0.3);
}

.focus\:text-primary-lighter-30:focus{
  color: rgba(226, 125, 129, 0.3);
}

.focus\:text-primary-lightest-30:focus{
  color: rgba(236, 168, 171, 0.3);
}

.focus\:text-secondary-darkest-30:focus{
  color: rgba(62, 69, 37, 0.3);
}

.focus\:text-secondary-darker-30:focus{
  color: rgba(94, 104, 55, 0.3);
}

.focus\:text-secondary-dark-30:focus{
  color: rgba(125, 138, 74, 0.3);
}

.focus\:text-secondary-30:focus{
  color: rgba(156, 173, 92, 0.3);
}

.focus\:text-secondary-light-30:focus{
  color: rgba(176, 189, 125, 0.3);
}

.focus\:text-secondary-lighter-30:focus{
  color: rgba(196, 206, 157, 0.3);
}

.focus\:text-secondary-lightest-30:focus{
  color: rgba(215, 222, 190, 0.3);
}

.focus\:text-tertiary-darkest-30:focus{
  color: rgba(15, 47, 33, 0.3);
}

.focus\:text-tertiary-darker-30:focus{
  color: rgba(26, 71, 49, 0.3);
}

.focus\:text-tertiary-dark-30:focus{
  color: rgba(31, 157, 85, 0.3);
}

.focus\:text-tertiary-30:focus{
  color: rgba(255, 197, 0, 0.3);
}

.focus\:text-tertiary-light-30:focus{
  color: rgba(81, 216, 138, 0.3);
}

.focus\:text-tertiary-lighter-30:focus{
  color: rgba(162, 245, 191, 0.3);
}

.focus\:text-tertiary-lightest-30:focus{
  color: rgba(227, 252, 236, 0.3);
}

.group:hover .group-hover\:text-border-30{
  color: rgba(230, 235, 245, 0.3);
}

.group:hover .group-hover\:text-form-30{
  color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:text-form-active-30{
  color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:text-black-30{
  color: rgba(33, 37, 41, 0.3);
}

.group:hover .group-hover\:text-grey-darkest-30{
  color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:text-grey-darker-30{
  color: rgba(154, 165, 192, 0.3);
}

.group:hover .group-hover\:text-grey-dark-30{
  color: rgba(66, 80, 92, 0.3);
}

.group:hover .group-hover\:text-grey-30{
  color: rgba(121, 130, 139, 0.3);
}

.group:hover .group-hover\:text-grey-light-30{
  color: rgba(179, 188, 197, 0.3);
}

.group:hover .group-hover\:text-grey-lighter-30{
  color: rgba(222, 228, 233, 0.3);
}

.group:hover .group-hover\:text-grey-lightest-30{
  color: rgba(244, 246, 249, 0.3);
}

.group:hover .group-hover\:text-white-30{
  color: rgba(255, 255, 255, 0.3);
}

.group:hover .group-hover\:text-red-30{
  color: rgba(211, 26, 8, 0.3);
}

.group:hover .group-hover\:text-green-30{
  color: rgba(102, 187, 8, 0.3);
}

.group:hover .group-hover\:text-blue-30{
  color: rgba(31, 168, 226, 0.3);
}

.group:hover .group-hover\:text-orange-30{
  color: rgba(247, 148, 14, 0.3);
}

.group:hover .group-hover\:text-primary-darkest-30{
  color: rgba(83, 15, 18, 0.3);
}

.group:hover .group-hover\:text-primary-darker-30{
  color: rgba(124, 23, 27, 0.3);
}

.group:hover .group-hover\:text-primary-dark-30{
  color: rgba(166, 30, 36, 0.3);
}

.group:hover .group-hover\:text-primary-30{
  color: rgba(207, 38, 45, 0.3);
}

.group:hover .group-hover\:text-primary-light-30{
  color: rgba(217, 81, 87, 0.3);
}

.group:hover .group-hover\:text-primary-lighter-30{
  color: rgba(226, 125, 129, 0.3);
}

.group:hover .group-hover\:text-primary-lightest-30{
  color: rgba(236, 168, 171, 0.3);
}

.group:hover .group-hover\:text-secondary-darkest-30{
  color: rgba(62, 69, 37, 0.3);
}

.group:hover .group-hover\:text-secondary-darker-30{
  color: rgba(94, 104, 55, 0.3);
}

.group:hover .group-hover\:text-secondary-dark-30{
  color: rgba(125, 138, 74, 0.3);
}

.group:hover .group-hover\:text-secondary-30{
  color: rgba(156, 173, 92, 0.3);
}

.group:hover .group-hover\:text-secondary-light-30{
  color: rgba(176, 189, 125, 0.3);
}

.group:hover .group-hover\:text-secondary-lighter-30{
  color: rgba(196, 206, 157, 0.3);
}

.group:hover .group-hover\:text-secondary-lightest-30{
  color: rgba(215, 222, 190, 0.3);
}

.group:hover .group-hover\:text-tertiary-darkest-30{
  color: rgba(15, 47, 33, 0.3);
}

.group:hover .group-hover\:text-tertiary-darker-30{
  color: rgba(26, 71, 49, 0.3);
}

.group:hover .group-hover\:text-tertiary-dark-30{
  color: rgba(31, 157, 85, 0.3);
}

.group:hover .group-hover\:text-tertiary-30{
  color: rgba(255, 197, 0, 0.3);
}

.group:hover .group-hover\:text-tertiary-light-30{
  color: rgba(81, 216, 138, 0.3);
}

.group:hover .group-hover\:text-tertiary-lighter-30{
  color: rgba(162, 245, 191, 0.3);
}

.group:hover .group-hover\:text-tertiary-lightest-30{
  color: rgba(227, 252, 236, 0.3);
}

.bg-border-40{
  background-color: rgba(230, 235, 245, 0.4);
}

.bg-form-40{
  background-color: rgba(121, 130, 139, 0.4);
}

.bg-form-active-40{
  background-color: rgba(66, 80, 92, 0.4);
}

.bg-black-40{
  background-color: rgba(33, 37, 41, 0.4);
}

.bg-grey-darkest-40{
  background-color: rgba(154, 165, 192, 0.4);
}

.bg-grey-darker-40{
  background-color: rgba(154, 165, 192, 0.4);
}

.bg-grey-dark-40{
  background-color: rgba(66, 80, 92, 0.4);
}

.bg-grey-40{
  background-color: rgba(121, 130, 139, 0.4);
}

.bg-grey-light-40{
  background-color: rgba(179, 188, 197, 0.4);
}

.bg-grey-lighter-40{
  background-color: rgba(222, 228, 233, 0.4);
}

.bg-grey-lightest-40{
  background-color: rgba(244, 246, 249, 0.4);
}

.bg-white-40{
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-red-40{
  background-color: rgba(211, 26, 8, 0.4);
}

.bg-green-40{
  background-color: rgba(102, 187, 8, 0.4);
}

.bg-blue-40{
  background-color: rgba(31, 168, 226, 0.4);
}

.bg-orange-40{
  background-color: rgba(247, 148, 14, 0.4);
}

.bg-primary-darkest-40{
  background-color: rgba(83, 15, 18, 0.4);
}

.bg-primary-darker-40{
  background-color: rgba(124, 23, 27, 0.4);
}

.bg-primary-dark-40{
  background-color: rgba(166, 30, 36, 0.4);
}

.bg-primary-40{
  background-color: rgba(207, 38, 45, 0.4);
}

.bg-primary-light-40{
  background-color: rgba(217, 81, 87, 0.4);
}

.bg-primary-lighter-40{
  background-color: rgba(226, 125, 129, 0.4);
}

.bg-primary-lightest-40{
  background-color: rgba(236, 168, 171, 0.4);
}

.bg-secondary-darkest-40{
  background-color: rgba(62, 69, 37, 0.4);
}

.bg-secondary-darker-40{
  background-color: rgba(94, 104, 55, 0.4);
}

.bg-secondary-dark-40{
  background-color: rgba(125, 138, 74, 0.4);
}

.bg-secondary-40{
  background-color: rgba(156, 173, 92, 0.4);
}

.bg-secondary-light-40{
  background-color: rgba(176, 189, 125, 0.4);
}

.bg-secondary-lighter-40{
  background-color: rgba(196, 206, 157, 0.4);
}

.bg-secondary-lightest-40{
  background-color: rgba(215, 222, 190, 0.4);
}

.bg-tertiary-darkest-40{
  background-color: rgba(15, 47, 33, 0.4);
}

.bg-tertiary-darker-40{
  background-color: rgba(26, 71, 49, 0.4);
}

.bg-tertiary-dark-40{
  background-color: rgba(31, 157, 85, 0.4);
}

.bg-tertiary-40{
  background-color: rgba(255, 197, 0, 0.4);
}

.bg-tertiary-light-40{
  background-color: rgba(81, 216, 138, 0.4);
}

.bg-tertiary-lighter-40{
  background-color: rgba(162, 245, 191, 0.4);
}

.bg-tertiary-lightest-40{
  background-color: rgba(227, 252, 236, 0.4);
}

.hover\:bg-border-40:hover{
  background-color: rgba(230, 235, 245, 0.4);
}

.hover\:bg-form-40:hover{
  background-color: rgba(121, 130, 139, 0.4);
}

.hover\:bg-form-active-40:hover{
  background-color: rgba(66, 80, 92, 0.4);
}

.hover\:bg-black-40:hover{
  background-color: rgba(33, 37, 41, 0.4);
}

.hover\:bg-grey-darkest-40:hover{
  background-color: rgba(154, 165, 192, 0.4);
}

.hover\:bg-grey-darker-40:hover{
  background-color: rgba(154, 165, 192, 0.4);
}

.hover\:bg-grey-dark-40:hover{
  background-color: rgba(66, 80, 92, 0.4);
}

.hover\:bg-grey-40:hover{
  background-color: rgba(121, 130, 139, 0.4);
}

.hover\:bg-grey-light-40:hover{
  background-color: rgba(179, 188, 197, 0.4);
}

.hover\:bg-grey-lighter-40:hover{
  background-color: rgba(222, 228, 233, 0.4);
}

.hover\:bg-grey-lightest-40:hover{
  background-color: rgba(244, 246, 249, 0.4);
}

.hover\:bg-white-40:hover{
  background-color: rgba(255, 255, 255, 0.4);
}

.hover\:bg-red-40:hover{
  background-color: rgba(211, 26, 8, 0.4);
}

.hover\:bg-green-40:hover{
  background-color: rgba(102, 187, 8, 0.4);
}

.hover\:bg-blue-40:hover{
  background-color: rgba(31, 168, 226, 0.4);
}

.hover\:bg-orange-40:hover{
  background-color: rgba(247, 148, 14, 0.4);
}

.hover\:bg-primary-darkest-40:hover{
  background-color: rgba(83, 15, 18, 0.4);
}

.hover\:bg-primary-darker-40:hover{
  background-color: rgba(124, 23, 27, 0.4);
}

.hover\:bg-primary-dark-40:hover{
  background-color: rgba(166, 30, 36, 0.4);
}

.hover\:bg-primary-40:hover{
  background-color: rgba(207, 38, 45, 0.4);
}

.hover\:bg-primary-light-40:hover{
  background-color: rgba(217, 81, 87, 0.4);
}

.hover\:bg-primary-lighter-40:hover{
  background-color: rgba(226, 125, 129, 0.4);
}

.hover\:bg-primary-lightest-40:hover{
  background-color: rgba(236, 168, 171, 0.4);
}

.hover\:bg-secondary-darkest-40:hover{
  background-color: rgba(62, 69, 37, 0.4);
}

.hover\:bg-secondary-darker-40:hover{
  background-color: rgba(94, 104, 55, 0.4);
}

.hover\:bg-secondary-dark-40:hover{
  background-color: rgba(125, 138, 74, 0.4);
}

.hover\:bg-secondary-40:hover{
  background-color: rgba(156, 173, 92, 0.4);
}

.hover\:bg-secondary-light-40:hover{
  background-color: rgba(176, 189, 125, 0.4);
}

.hover\:bg-secondary-lighter-40:hover{
  background-color: rgba(196, 206, 157, 0.4);
}

.hover\:bg-secondary-lightest-40:hover{
  background-color: rgba(215, 222, 190, 0.4);
}

.hover\:bg-tertiary-darkest-40:hover{
  background-color: rgba(15, 47, 33, 0.4);
}

.hover\:bg-tertiary-darker-40:hover{
  background-color: rgba(26, 71, 49, 0.4);
}

.hover\:bg-tertiary-dark-40:hover{
  background-color: rgba(31, 157, 85, 0.4);
}

.hover\:bg-tertiary-40:hover{
  background-color: rgba(255, 197, 0, 0.4);
}

.hover\:bg-tertiary-light-40:hover{
  background-color: rgba(81, 216, 138, 0.4);
}

.hover\:bg-tertiary-lighter-40:hover{
  background-color: rgba(162, 245, 191, 0.4);
}

.hover\:bg-tertiary-lightest-40:hover{
  background-color: rgba(227, 252, 236, 0.4);
}

.focus\:bg-border-40:focus{
  background-color: rgba(230, 235, 245, 0.4);
}

.focus\:bg-form-40:focus{
  background-color: rgba(121, 130, 139, 0.4);
}

.focus\:bg-form-active-40:focus{
  background-color: rgba(66, 80, 92, 0.4);
}

.focus\:bg-black-40:focus{
  background-color: rgba(33, 37, 41, 0.4);
}

.focus\:bg-grey-darkest-40:focus{
  background-color: rgba(154, 165, 192, 0.4);
}

.focus\:bg-grey-darker-40:focus{
  background-color: rgba(154, 165, 192, 0.4);
}

.focus\:bg-grey-dark-40:focus{
  background-color: rgba(66, 80, 92, 0.4);
}

.focus\:bg-grey-40:focus{
  background-color: rgba(121, 130, 139, 0.4);
}

.focus\:bg-grey-light-40:focus{
  background-color: rgba(179, 188, 197, 0.4);
}

.focus\:bg-grey-lighter-40:focus{
  background-color: rgba(222, 228, 233, 0.4);
}

.focus\:bg-grey-lightest-40:focus{
  background-color: rgba(244, 246, 249, 0.4);
}

.focus\:bg-white-40:focus{
  background-color: rgba(255, 255, 255, 0.4);
}

.focus\:bg-red-40:focus{
  background-color: rgba(211, 26, 8, 0.4);
}

.focus\:bg-green-40:focus{
  background-color: rgba(102, 187, 8, 0.4);
}

.focus\:bg-blue-40:focus{
  background-color: rgba(31, 168, 226, 0.4);
}

.focus\:bg-orange-40:focus{
  background-color: rgba(247, 148, 14, 0.4);
}

.focus\:bg-primary-darkest-40:focus{
  background-color: rgba(83, 15, 18, 0.4);
}

.focus\:bg-primary-darker-40:focus{
  background-color: rgba(124, 23, 27, 0.4);
}

.focus\:bg-primary-dark-40:focus{
  background-color: rgba(166, 30, 36, 0.4);
}

.focus\:bg-primary-40:focus{
  background-color: rgba(207, 38, 45, 0.4);
}

.focus\:bg-primary-light-40:focus{
  background-color: rgba(217, 81, 87, 0.4);
}

.focus\:bg-primary-lighter-40:focus{
  background-color: rgba(226, 125, 129, 0.4);
}

.focus\:bg-primary-lightest-40:focus{
  background-color: rgba(236, 168, 171, 0.4);
}

.focus\:bg-secondary-darkest-40:focus{
  background-color: rgba(62, 69, 37, 0.4);
}

.focus\:bg-secondary-darker-40:focus{
  background-color: rgba(94, 104, 55, 0.4);
}

.focus\:bg-secondary-dark-40:focus{
  background-color: rgba(125, 138, 74, 0.4);
}

.focus\:bg-secondary-40:focus{
  background-color: rgba(156, 173, 92, 0.4);
}

.focus\:bg-secondary-light-40:focus{
  background-color: rgba(176, 189, 125, 0.4);
}

.focus\:bg-secondary-lighter-40:focus{
  background-color: rgba(196, 206, 157, 0.4);
}

.focus\:bg-secondary-lightest-40:focus{
  background-color: rgba(215, 222, 190, 0.4);
}

.focus\:bg-tertiary-darkest-40:focus{
  background-color: rgba(15, 47, 33, 0.4);
}

.focus\:bg-tertiary-darker-40:focus{
  background-color: rgba(26, 71, 49, 0.4);
}

.focus\:bg-tertiary-dark-40:focus{
  background-color: rgba(31, 157, 85, 0.4);
}

.focus\:bg-tertiary-40:focus{
  background-color: rgba(255, 197, 0, 0.4);
}

.focus\:bg-tertiary-light-40:focus{
  background-color: rgba(81, 216, 138, 0.4);
}

.focus\:bg-tertiary-lighter-40:focus{
  background-color: rgba(162, 245, 191, 0.4);
}

.focus\:bg-tertiary-lightest-40:focus{
  background-color: rgba(227, 252, 236, 0.4);
}

.focus\:bg-border-40:focus{
  background-color: rgba(230, 235, 245, 0.4);
}

.focus\:bg-form-40:focus{
  background-color: rgba(121, 130, 139, 0.4);
}

.focus\:bg-form-active-40:focus{
  background-color: rgba(66, 80, 92, 0.4);
}

.focus\:bg-black-40:focus{
  background-color: rgba(33, 37, 41, 0.4);
}

.focus\:bg-grey-darkest-40:focus{
  background-color: rgba(154, 165, 192, 0.4);
}

.focus\:bg-grey-darker-40:focus{
  background-color: rgba(154, 165, 192, 0.4);
}

.focus\:bg-grey-dark-40:focus{
  background-color: rgba(66, 80, 92, 0.4);
}

.focus\:bg-grey-40:focus{
  background-color: rgba(121, 130, 139, 0.4);
}

.focus\:bg-grey-light-40:focus{
  background-color: rgba(179, 188, 197, 0.4);
}

.focus\:bg-grey-lighter-40:focus{
  background-color: rgba(222, 228, 233, 0.4);
}

.focus\:bg-grey-lightest-40:focus{
  background-color: rgba(244, 246, 249, 0.4);
}

.focus\:bg-white-40:focus{
  background-color: rgba(255, 255, 255, 0.4);
}

.focus\:bg-red-40:focus{
  background-color: rgba(211, 26, 8, 0.4);
}

.focus\:bg-green-40:focus{
  background-color: rgba(102, 187, 8, 0.4);
}

.focus\:bg-blue-40:focus{
  background-color: rgba(31, 168, 226, 0.4);
}

.focus\:bg-orange-40:focus{
  background-color: rgba(247, 148, 14, 0.4);
}

.focus\:bg-primary-darkest-40:focus{
  background-color: rgba(83, 15, 18, 0.4);
}

.focus\:bg-primary-darker-40:focus{
  background-color: rgba(124, 23, 27, 0.4);
}

.focus\:bg-primary-dark-40:focus{
  background-color: rgba(166, 30, 36, 0.4);
}

.focus\:bg-primary-40:focus{
  background-color: rgba(207, 38, 45, 0.4);
}

.focus\:bg-primary-light-40:focus{
  background-color: rgba(217, 81, 87, 0.4);
}

.focus\:bg-primary-lighter-40:focus{
  background-color: rgba(226, 125, 129, 0.4);
}

.focus\:bg-primary-lightest-40:focus{
  background-color: rgba(236, 168, 171, 0.4);
}

.focus\:bg-secondary-darkest-40:focus{
  background-color: rgba(62, 69, 37, 0.4);
}

.focus\:bg-secondary-darker-40:focus{
  background-color: rgba(94, 104, 55, 0.4);
}

.focus\:bg-secondary-dark-40:focus{
  background-color: rgba(125, 138, 74, 0.4);
}

.focus\:bg-secondary-40:focus{
  background-color: rgba(156, 173, 92, 0.4);
}

.focus\:bg-secondary-light-40:focus{
  background-color: rgba(176, 189, 125, 0.4);
}

.focus\:bg-secondary-lighter-40:focus{
  background-color: rgba(196, 206, 157, 0.4);
}

.focus\:bg-secondary-lightest-40:focus{
  background-color: rgba(215, 222, 190, 0.4);
}

.focus\:bg-tertiary-darkest-40:focus{
  background-color: rgba(15, 47, 33, 0.4);
}

.focus\:bg-tertiary-darker-40:focus{
  background-color: rgba(26, 71, 49, 0.4);
}

.focus\:bg-tertiary-dark-40:focus{
  background-color: rgba(31, 157, 85, 0.4);
}

.focus\:bg-tertiary-40:focus{
  background-color: rgba(255, 197, 0, 0.4);
}

.focus\:bg-tertiary-light-40:focus{
  background-color: rgba(81, 216, 138, 0.4);
}

.focus\:bg-tertiary-lighter-40:focus{
  background-color: rgba(162, 245, 191, 0.4);
}

.focus\:bg-tertiary-lightest-40:focus{
  background-color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:bg-border-40{
  background-color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:bg-form-40{
  background-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:bg-form-active-40{
  background-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:bg-black-40{
  background-color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:bg-grey-darkest-40{
  background-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:bg-grey-darker-40{
  background-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:bg-grey-dark-40{
  background-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:bg-grey-40{
  background-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:bg-grey-light-40{
  background-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:bg-grey-lighter-40{
  background-color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:bg-grey-lightest-40{
  background-color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:bg-white-40{
  background-color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:bg-red-40{
  background-color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:bg-green-40{
  background-color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:bg-blue-40{
  background-color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:bg-orange-40{
  background-color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:bg-primary-darkest-40{
  background-color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:bg-primary-darker-40{
  background-color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:bg-primary-dark-40{
  background-color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:bg-primary-40{
  background-color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:bg-primary-light-40{
  background-color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:bg-primary-lighter-40{
  background-color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:bg-primary-lightest-40{
  background-color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:bg-secondary-darkest-40{
  background-color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:bg-secondary-darker-40{
  background-color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:bg-secondary-dark-40{
  background-color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:bg-secondary-40{
  background-color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:bg-secondary-light-40{
  background-color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:bg-secondary-lighter-40{
  background-color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:bg-secondary-lightest-40{
  background-color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:bg-tertiary-darkest-40{
  background-color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:bg-tertiary-darker-40{
  background-color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:bg-tertiary-dark-40{
  background-color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:bg-tertiary-40{
  background-color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:bg-tertiary-light-40{
  background-color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:bg-tertiary-lighter-40{
  background-color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:bg-tertiary-lightest-40{
  background-color: rgba(227, 252, 236, 0.4);
}

.border-border-40{
  border-color: rgba(230, 235, 245, 0.4);
}

.border-t-border-40{
  border-top-color: rgba(230, 235, 245, 0.4);
}

.border-r-border-40{
  border-right-color: rgba(230, 235, 245, 0.4);
}

.border-b-border-40{
  border-bottom-color: rgba(230, 235, 245, 0.4);
}

.border-l-border-40{
  border-left-color: rgba(230, 235, 245, 0.4);
}

.border-form-40{
  border-color: rgba(121, 130, 139, 0.4);
}

.border-t-form-40{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.border-r-form-40{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.border-b-form-40{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.border-l-form-40{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.border-form-active-40{
  border-color: rgba(66, 80, 92, 0.4);
}

.border-t-form-active-40{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.border-r-form-active-40{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.border-b-form-active-40{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.border-l-form-active-40{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.border-black-40{
  border-color: rgba(33, 37, 41, 0.4);
}

.border-t-black-40{
  border-top-color: rgba(33, 37, 41, 0.4);
}

.border-r-black-40{
  border-right-color: rgba(33, 37, 41, 0.4);
}

.border-b-black-40{
  border-bottom-color: rgba(33, 37, 41, 0.4);
}

.border-l-black-40{
  border-left-color: rgba(33, 37, 41, 0.4);
}

.border-grey-darkest-40{
  border-color: rgba(154, 165, 192, 0.4);
}

.border-t-grey-darkest-40{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.border-r-grey-darkest-40{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.border-b-grey-darkest-40{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.border-l-grey-darkest-40{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.border-grey-darker-40{
  border-color: rgba(154, 165, 192, 0.4);
}

.border-t-grey-darker-40{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.border-r-grey-darker-40{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.border-b-grey-darker-40{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.border-l-grey-darker-40{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.border-grey-dark-40{
  border-color: rgba(66, 80, 92, 0.4);
}

.border-t-grey-dark-40{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.border-r-grey-dark-40{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.border-b-grey-dark-40{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.border-l-grey-dark-40{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.border-grey-40{
  border-color: rgba(121, 130, 139, 0.4);
}

.border-t-grey-40{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.border-r-grey-40{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.border-b-grey-40{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.border-l-grey-40{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.border-grey-light-40{
  border-color: rgba(179, 188, 197, 0.4);
}

.border-t-grey-light-40{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.border-r-grey-light-40{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.border-b-grey-light-40{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.border-l-grey-light-40{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.border-grey-lighter-40{
  border-color: rgba(222, 228, 233, 0.4);
}

.border-t-grey-lighter-40{
  border-top-color: rgba(222, 228, 233, 0.4);
}

.border-r-grey-lighter-40{
  border-right-color: rgba(222, 228, 233, 0.4);
}

.border-b-grey-lighter-40{
  border-bottom-color: rgba(222, 228, 233, 0.4);
}

.border-l-grey-lighter-40{
  border-left-color: rgba(222, 228, 233, 0.4);
}

.border-grey-lightest-40{
  border-color: rgba(244, 246, 249, 0.4);
}

.border-t-grey-lightest-40{
  border-top-color: rgba(244, 246, 249, 0.4);
}

.border-r-grey-lightest-40{
  border-right-color: rgba(244, 246, 249, 0.4);
}

.border-b-grey-lightest-40{
  border-bottom-color: rgba(244, 246, 249, 0.4);
}

.border-l-grey-lightest-40{
  border-left-color: rgba(244, 246, 249, 0.4);
}

.border-white-40{
  border-color: rgba(255, 255, 255, 0.4);
}

.border-t-white-40{
  border-top-color: rgba(255, 255, 255, 0.4);
}

.border-r-white-40{
  border-right-color: rgba(255, 255, 255, 0.4);
}

.border-b-white-40{
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.border-l-white-40{
  border-left-color: rgba(255, 255, 255, 0.4);
}

.border-red-40{
  border-color: rgba(211, 26, 8, 0.4);
}

.border-t-red-40{
  border-top-color: rgba(211, 26, 8, 0.4);
}

.border-r-red-40{
  border-right-color: rgba(211, 26, 8, 0.4);
}

.border-b-red-40{
  border-bottom-color: rgba(211, 26, 8, 0.4);
}

.border-l-red-40{
  border-left-color: rgba(211, 26, 8, 0.4);
}

.border-green-40{
  border-color: rgba(102, 187, 8, 0.4);
}

.border-t-green-40{
  border-top-color: rgba(102, 187, 8, 0.4);
}

.border-r-green-40{
  border-right-color: rgba(102, 187, 8, 0.4);
}

.border-b-green-40{
  border-bottom-color: rgba(102, 187, 8, 0.4);
}

.border-l-green-40{
  border-left-color: rgba(102, 187, 8, 0.4);
}

.border-blue-40{
  border-color: rgba(31, 168, 226, 0.4);
}

.border-t-blue-40{
  border-top-color: rgba(31, 168, 226, 0.4);
}

.border-r-blue-40{
  border-right-color: rgba(31, 168, 226, 0.4);
}

.border-b-blue-40{
  border-bottom-color: rgba(31, 168, 226, 0.4);
}

.border-l-blue-40{
  border-left-color: rgba(31, 168, 226, 0.4);
}

.border-orange-40{
  border-color: rgba(247, 148, 14, 0.4);
}

.border-t-orange-40{
  border-top-color: rgba(247, 148, 14, 0.4);
}

.border-r-orange-40{
  border-right-color: rgba(247, 148, 14, 0.4);
}

.border-b-orange-40{
  border-bottom-color: rgba(247, 148, 14, 0.4);
}

.border-l-orange-40{
  border-left-color: rgba(247, 148, 14, 0.4);
}

.border-primary-darkest-40{
  border-color: rgba(83, 15, 18, 0.4);
}

.border-t-primary-darkest-40{
  border-top-color: rgba(83, 15, 18, 0.4);
}

.border-r-primary-darkest-40{
  border-right-color: rgba(83, 15, 18, 0.4);
}

.border-b-primary-darkest-40{
  border-bottom-color: rgba(83, 15, 18, 0.4);
}

.border-l-primary-darkest-40{
  border-left-color: rgba(83, 15, 18, 0.4);
}

.border-primary-darker-40{
  border-color: rgba(124, 23, 27, 0.4);
}

.border-t-primary-darker-40{
  border-top-color: rgba(124, 23, 27, 0.4);
}

.border-r-primary-darker-40{
  border-right-color: rgba(124, 23, 27, 0.4);
}

.border-b-primary-darker-40{
  border-bottom-color: rgba(124, 23, 27, 0.4);
}

.border-l-primary-darker-40{
  border-left-color: rgba(124, 23, 27, 0.4);
}

.border-primary-dark-40{
  border-color: rgba(166, 30, 36, 0.4);
}

.border-t-primary-dark-40{
  border-top-color: rgba(166, 30, 36, 0.4);
}

.border-r-primary-dark-40{
  border-right-color: rgba(166, 30, 36, 0.4);
}

.border-b-primary-dark-40{
  border-bottom-color: rgba(166, 30, 36, 0.4);
}

.border-l-primary-dark-40{
  border-left-color: rgba(166, 30, 36, 0.4);
}

.border-primary-40{
  border-color: rgba(207, 38, 45, 0.4);
}

.border-t-primary-40{
  border-top-color: rgba(207, 38, 45, 0.4);
}

.border-r-primary-40{
  border-right-color: rgba(207, 38, 45, 0.4);
}

.border-b-primary-40{
  border-bottom-color: rgba(207, 38, 45, 0.4);
}

.border-l-primary-40{
  border-left-color: rgba(207, 38, 45, 0.4);
}

.border-primary-light-40{
  border-color: rgba(217, 81, 87, 0.4);
}

.border-t-primary-light-40{
  border-top-color: rgba(217, 81, 87, 0.4);
}

.border-r-primary-light-40{
  border-right-color: rgba(217, 81, 87, 0.4);
}

.border-b-primary-light-40{
  border-bottom-color: rgba(217, 81, 87, 0.4);
}

.border-l-primary-light-40{
  border-left-color: rgba(217, 81, 87, 0.4);
}

.border-primary-lighter-40{
  border-color: rgba(226, 125, 129, 0.4);
}

.border-t-primary-lighter-40{
  border-top-color: rgba(226, 125, 129, 0.4);
}

.border-r-primary-lighter-40{
  border-right-color: rgba(226, 125, 129, 0.4);
}

.border-b-primary-lighter-40{
  border-bottom-color: rgba(226, 125, 129, 0.4);
}

.border-l-primary-lighter-40{
  border-left-color: rgba(226, 125, 129, 0.4);
}

.border-primary-lightest-40{
  border-color: rgba(236, 168, 171, 0.4);
}

.border-t-primary-lightest-40{
  border-top-color: rgba(236, 168, 171, 0.4);
}

.border-r-primary-lightest-40{
  border-right-color: rgba(236, 168, 171, 0.4);
}

.border-b-primary-lightest-40{
  border-bottom-color: rgba(236, 168, 171, 0.4);
}

.border-l-primary-lightest-40{
  border-left-color: rgba(236, 168, 171, 0.4);
}

.border-secondary-darkest-40{
  border-color: rgba(62, 69, 37, 0.4);
}

.border-t-secondary-darkest-40{
  border-top-color: rgba(62, 69, 37, 0.4);
}

.border-r-secondary-darkest-40{
  border-right-color: rgba(62, 69, 37, 0.4);
}

.border-b-secondary-darkest-40{
  border-bottom-color: rgba(62, 69, 37, 0.4);
}

.border-l-secondary-darkest-40{
  border-left-color: rgba(62, 69, 37, 0.4);
}

.border-secondary-darker-40{
  border-color: rgba(94, 104, 55, 0.4);
}

.border-t-secondary-darker-40{
  border-top-color: rgba(94, 104, 55, 0.4);
}

.border-r-secondary-darker-40{
  border-right-color: rgba(94, 104, 55, 0.4);
}

.border-b-secondary-darker-40{
  border-bottom-color: rgba(94, 104, 55, 0.4);
}

.border-l-secondary-darker-40{
  border-left-color: rgba(94, 104, 55, 0.4);
}

.border-secondary-dark-40{
  border-color: rgba(125, 138, 74, 0.4);
}

.border-t-secondary-dark-40{
  border-top-color: rgba(125, 138, 74, 0.4);
}

.border-r-secondary-dark-40{
  border-right-color: rgba(125, 138, 74, 0.4);
}

.border-b-secondary-dark-40{
  border-bottom-color: rgba(125, 138, 74, 0.4);
}

.border-l-secondary-dark-40{
  border-left-color: rgba(125, 138, 74, 0.4);
}

.border-secondary-40{
  border-color: rgba(156, 173, 92, 0.4);
}

.border-t-secondary-40{
  border-top-color: rgba(156, 173, 92, 0.4);
}

.border-r-secondary-40{
  border-right-color: rgba(156, 173, 92, 0.4);
}

.border-b-secondary-40{
  border-bottom-color: rgba(156, 173, 92, 0.4);
}

.border-l-secondary-40{
  border-left-color: rgba(156, 173, 92, 0.4);
}

.border-secondary-light-40{
  border-color: rgba(176, 189, 125, 0.4);
}

.border-t-secondary-light-40{
  border-top-color: rgba(176, 189, 125, 0.4);
}

.border-r-secondary-light-40{
  border-right-color: rgba(176, 189, 125, 0.4);
}

.border-b-secondary-light-40{
  border-bottom-color: rgba(176, 189, 125, 0.4);
}

.border-l-secondary-light-40{
  border-left-color: rgba(176, 189, 125, 0.4);
}

.border-secondary-lighter-40{
  border-color: rgba(196, 206, 157, 0.4);
}

.border-t-secondary-lighter-40{
  border-top-color: rgba(196, 206, 157, 0.4);
}

.border-r-secondary-lighter-40{
  border-right-color: rgba(196, 206, 157, 0.4);
}

.border-b-secondary-lighter-40{
  border-bottom-color: rgba(196, 206, 157, 0.4);
}

.border-l-secondary-lighter-40{
  border-left-color: rgba(196, 206, 157, 0.4);
}

.border-secondary-lightest-40{
  border-color: rgba(215, 222, 190, 0.4);
}

.border-t-secondary-lightest-40{
  border-top-color: rgba(215, 222, 190, 0.4);
}

.border-r-secondary-lightest-40{
  border-right-color: rgba(215, 222, 190, 0.4);
}

.border-b-secondary-lightest-40{
  border-bottom-color: rgba(215, 222, 190, 0.4);
}

.border-l-secondary-lightest-40{
  border-left-color: rgba(215, 222, 190, 0.4);
}

.border-tertiary-darkest-40{
  border-color: rgba(15, 47, 33, 0.4);
}

.border-t-tertiary-darkest-40{
  border-top-color: rgba(15, 47, 33, 0.4);
}

.border-r-tertiary-darkest-40{
  border-right-color: rgba(15, 47, 33, 0.4);
}

.border-b-tertiary-darkest-40{
  border-bottom-color: rgba(15, 47, 33, 0.4);
}

.border-l-tertiary-darkest-40{
  border-left-color: rgba(15, 47, 33, 0.4);
}

.border-tertiary-darker-40{
  border-color: rgba(26, 71, 49, 0.4);
}

.border-t-tertiary-darker-40{
  border-top-color: rgba(26, 71, 49, 0.4);
}

.border-r-tertiary-darker-40{
  border-right-color: rgba(26, 71, 49, 0.4);
}

.border-b-tertiary-darker-40{
  border-bottom-color: rgba(26, 71, 49, 0.4);
}

.border-l-tertiary-darker-40{
  border-left-color: rgba(26, 71, 49, 0.4);
}

.border-tertiary-dark-40{
  border-color: rgba(31, 157, 85, 0.4);
}

.border-t-tertiary-dark-40{
  border-top-color: rgba(31, 157, 85, 0.4);
}

.border-r-tertiary-dark-40{
  border-right-color: rgba(31, 157, 85, 0.4);
}

.border-b-tertiary-dark-40{
  border-bottom-color: rgba(31, 157, 85, 0.4);
}

.border-l-tertiary-dark-40{
  border-left-color: rgba(31, 157, 85, 0.4);
}

.border-tertiary-40{
  border-color: rgba(255, 197, 0, 0.4);
}

.border-t-tertiary-40{
  border-top-color: rgba(255, 197, 0, 0.4);
}

.border-r-tertiary-40{
  border-right-color: rgba(255, 197, 0, 0.4);
}

.border-b-tertiary-40{
  border-bottom-color: rgba(255, 197, 0, 0.4);
}

.border-l-tertiary-40{
  border-left-color: rgba(255, 197, 0, 0.4);
}

.border-tertiary-light-40{
  border-color: rgba(81, 216, 138, 0.4);
}

.border-t-tertiary-light-40{
  border-top-color: rgba(81, 216, 138, 0.4);
}

.border-r-tertiary-light-40{
  border-right-color: rgba(81, 216, 138, 0.4);
}

.border-b-tertiary-light-40{
  border-bottom-color: rgba(81, 216, 138, 0.4);
}

.border-l-tertiary-light-40{
  border-left-color: rgba(81, 216, 138, 0.4);
}

.border-tertiary-lighter-40{
  border-color: rgba(162, 245, 191, 0.4);
}

.border-t-tertiary-lighter-40{
  border-top-color: rgba(162, 245, 191, 0.4);
}

.border-r-tertiary-lighter-40{
  border-right-color: rgba(162, 245, 191, 0.4);
}

.border-b-tertiary-lighter-40{
  border-bottom-color: rgba(162, 245, 191, 0.4);
}

.border-l-tertiary-lighter-40{
  border-left-color: rgba(162, 245, 191, 0.4);
}

.border-tertiary-lightest-40{
  border-color: rgba(227, 252, 236, 0.4);
}

.border-t-tertiary-lightest-40{
  border-top-color: rgba(227, 252, 236, 0.4);
}

.border-r-tertiary-lightest-40{
  border-right-color: rgba(227, 252, 236, 0.4);
}

.border-b-tertiary-lightest-40{
  border-bottom-color: rgba(227, 252, 236, 0.4);
}

.border-l-tertiary-lightest-40{
  border-left-color: rgba(227, 252, 236, 0.4);
}

.border-default-40{
  border-color: rgba(179, 188, 197, 0.4);
}

.border-t-default-40{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.border-r-default-40{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.border-b-default-40{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.border-l-default-40{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-border-40:hover{
  border-color: rgba(230, 235, 245, 0.4);
}

.hover\:border-t-border-40:hover{
  border-top-color: rgba(230, 235, 245, 0.4);
}

.hover\:border-r-border-40:hover{
  border-right-color: rgba(230, 235, 245, 0.4);
}

.hover\:border-b-border-40:hover{
  border-bottom-color: rgba(230, 235, 245, 0.4);
}

.hover\:border-l-border-40:hover{
  border-left-color: rgba(230, 235, 245, 0.4);
}

.hover\:border-form-40:hover{
  border-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-t-form-40:hover{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-r-form-40:hover{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-b-form-40:hover{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-l-form-40:hover{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-form-active-40:hover{
  border-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-t-form-active-40:hover{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-r-form-active-40:hover{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-b-form-active-40:hover{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-l-form-active-40:hover{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-black-40:hover{
  border-color: rgba(33, 37, 41, 0.4);
}

.hover\:border-t-black-40:hover{
  border-top-color: rgba(33, 37, 41, 0.4);
}

.hover\:border-r-black-40:hover{
  border-right-color: rgba(33, 37, 41, 0.4);
}

.hover\:border-b-black-40:hover{
  border-bottom-color: rgba(33, 37, 41, 0.4);
}

.hover\:border-l-black-40:hover{
  border-left-color: rgba(33, 37, 41, 0.4);
}

.hover\:border-grey-darkest-40:hover{
  border-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-t-grey-darkest-40:hover{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-r-grey-darkest-40:hover{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-b-grey-darkest-40:hover{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-l-grey-darkest-40:hover{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-grey-darker-40:hover{
  border-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-t-grey-darker-40:hover{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-r-grey-darker-40:hover{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-b-grey-darker-40:hover{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-l-grey-darker-40:hover{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.hover\:border-grey-dark-40:hover{
  border-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-t-grey-dark-40:hover{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-r-grey-dark-40:hover{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-b-grey-dark-40:hover{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-l-grey-dark-40:hover{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.hover\:border-grey-40:hover{
  border-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-t-grey-40:hover{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-r-grey-40:hover{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-b-grey-40:hover{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-l-grey-40:hover{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.hover\:border-grey-light-40:hover{
  border-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-t-grey-light-40:hover{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-r-grey-light-40:hover{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-b-grey-light-40:hover{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-l-grey-light-40:hover{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-grey-lighter-40:hover{
  border-color: rgba(222, 228, 233, 0.4);
}

.hover\:border-t-grey-lighter-40:hover{
  border-top-color: rgba(222, 228, 233, 0.4);
}

.hover\:border-r-grey-lighter-40:hover{
  border-right-color: rgba(222, 228, 233, 0.4);
}

.hover\:border-b-grey-lighter-40:hover{
  border-bottom-color: rgba(222, 228, 233, 0.4);
}

.hover\:border-l-grey-lighter-40:hover{
  border-left-color: rgba(222, 228, 233, 0.4);
}

.hover\:border-grey-lightest-40:hover{
  border-color: rgba(244, 246, 249, 0.4);
}

.hover\:border-t-grey-lightest-40:hover{
  border-top-color: rgba(244, 246, 249, 0.4);
}

.hover\:border-r-grey-lightest-40:hover{
  border-right-color: rgba(244, 246, 249, 0.4);
}

.hover\:border-b-grey-lightest-40:hover{
  border-bottom-color: rgba(244, 246, 249, 0.4);
}

.hover\:border-l-grey-lightest-40:hover{
  border-left-color: rgba(244, 246, 249, 0.4);
}

.hover\:border-white-40:hover{
  border-color: rgba(255, 255, 255, 0.4);
}

.hover\:border-t-white-40:hover{
  border-top-color: rgba(255, 255, 255, 0.4);
}

.hover\:border-r-white-40:hover{
  border-right-color: rgba(255, 255, 255, 0.4);
}

.hover\:border-b-white-40:hover{
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.hover\:border-l-white-40:hover{
  border-left-color: rgba(255, 255, 255, 0.4);
}

.hover\:border-red-40:hover{
  border-color: rgba(211, 26, 8, 0.4);
}

.hover\:border-t-red-40:hover{
  border-top-color: rgba(211, 26, 8, 0.4);
}

.hover\:border-r-red-40:hover{
  border-right-color: rgba(211, 26, 8, 0.4);
}

.hover\:border-b-red-40:hover{
  border-bottom-color: rgba(211, 26, 8, 0.4);
}

.hover\:border-l-red-40:hover{
  border-left-color: rgba(211, 26, 8, 0.4);
}

.hover\:border-green-40:hover{
  border-color: rgba(102, 187, 8, 0.4);
}

.hover\:border-t-green-40:hover{
  border-top-color: rgba(102, 187, 8, 0.4);
}

.hover\:border-r-green-40:hover{
  border-right-color: rgba(102, 187, 8, 0.4);
}

.hover\:border-b-green-40:hover{
  border-bottom-color: rgba(102, 187, 8, 0.4);
}

.hover\:border-l-green-40:hover{
  border-left-color: rgba(102, 187, 8, 0.4);
}

.hover\:border-blue-40:hover{
  border-color: rgba(31, 168, 226, 0.4);
}

.hover\:border-t-blue-40:hover{
  border-top-color: rgba(31, 168, 226, 0.4);
}

.hover\:border-r-blue-40:hover{
  border-right-color: rgba(31, 168, 226, 0.4);
}

.hover\:border-b-blue-40:hover{
  border-bottom-color: rgba(31, 168, 226, 0.4);
}

.hover\:border-l-blue-40:hover{
  border-left-color: rgba(31, 168, 226, 0.4);
}

.hover\:border-orange-40:hover{
  border-color: rgba(247, 148, 14, 0.4);
}

.hover\:border-t-orange-40:hover{
  border-top-color: rgba(247, 148, 14, 0.4);
}

.hover\:border-r-orange-40:hover{
  border-right-color: rgba(247, 148, 14, 0.4);
}

.hover\:border-b-orange-40:hover{
  border-bottom-color: rgba(247, 148, 14, 0.4);
}

.hover\:border-l-orange-40:hover{
  border-left-color: rgba(247, 148, 14, 0.4);
}

.hover\:border-primary-darkest-40:hover{
  border-color: rgba(83, 15, 18, 0.4);
}

.hover\:border-t-primary-darkest-40:hover{
  border-top-color: rgba(83, 15, 18, 0.4);
}

.hover\:border-r-primary-darkest-40:hover{
  border-right-color: rgba(83, 15, 18, 0.4);
}

.hover\:border-b-primary-darkest-40:hover{
  border-bottom-color: rgba(83, 15, 18, 0.4);
}

.hover\:border-l-primary-darkest-40:hover{
  border-left-color: rgba(83, 15, 18, 0.4);
}

.hover\:border-primary-darker-40:hover{
  border-color: rgba(124, 23, 27, 0.4);
}

.hover\:border-t-primary-darker-40:hover{
  border-top-color: rgba(124, 23, 27, 0.4);
}

.hover\:border-r-primary-darker-40:hover{
  border-right-color: rgba(124, 23, 27, 0.4);
}

.hover\:border-b-primary-darker-40:hover{
  border-bottom-color: rgba(124, 23, 27, 0.4);
}

.hover\:border-l-primary-darker-40:hover{
  border-left-color: rgba(124, 23, 27, 0.4);
}

.hover\:border-primary-dark-40:hover{
  border-color: rgba(166, 30, 36, 0.4);
}

.hover\:border-t-primary-dark-40:hover{
  border-top-color: rgba(166, 30, 36, 0.4);
}

.hover\:border-r-primary-dark-40:hover{
  border-right-color: rgba(166, 30, 36, 0.4);
}

.hover\:border-b-primary-dark-40:hover{
  border-bottom-color: rgba(166, 30, 36, 0.4);
}

.hover\:border-l-primary-dark-40:hover{
  border-left-color: rgba(166, 30, 36, 0.4);
}

.hover\:border-primary-40:hover{
  border-color: rgba(207, 38, 45, 0.4);
}

.hover\:border-t-primary-40:hover{
  border-top-color: rgba(207, 38, 45, 0.4);
}

.hover\:border-r-primary-40:hover{
  border-right-color: rgba(207, 38, 45, 0.4);
}

.hover\:border-b-primary-40:hover{
  border-bottom-color: rgba(207, 38, 45, 0.4);
}

.hover\:border-l-primary-40:hover{
  border-left-color: rgba(207, 38, 45, 0.4);
}

.hover\:border-primary-light-40:hover{
  border-color: rgba(217, 81, 87, 0.4);
}

.hover\:border-t-primary-light-40:hover{
  border-top-color: rgba(217, 81, 87, 0.4);
}

.hover\:border-r-primary-light-40:hover{
  border-right-color: rgba(217, 81, 87, 0.4);
}

.hover\:border-b-primary-light-40:hover{
  border-bottom-color: rgba(217, 81, 87, 0.4);
}

.hover\:border-l-primary-light-40:hover{
  border-left-color: rgba(217, 81, 87, 0.4);
}

.hover\:border-primary-lighter-40:hover{
  border-color: rgba(226, 125, 129, 0.4);
}

.hover\:border-t-primary-lighter-40:hover{
  border-top-color: rgba(226, 125, 129, 0.4);
}

.hover\:border-r-primary-lighter-40:hover{
  border-right-color: rgba(226, 125, 129, 0.4);
}

.hover\:border-b-primary-lighter-40:hover{
  border-bottom-color: rgba(226, 125, 129, 0.4);
}

.hover\:border-l-primary-lighter-40:hover{
  border-left-color: rgba(226, 125, 129, 0.4);
}

.hover\:border-primary-lightest-40:hover{
  border-color: rgba(236, 168, 171, 0.4);
}

.hover\:border-t-primary-lightest-40:hover{
  border-top-color: rgba(236, 168, 171, 0.4);
}

.hover\:border-r-primary-lightest-40:hover{
  border-right-color: rgba(236, 168, 171, 0.4);
}

.hover\:border-b-primary-lightest-40:hover{
  border-bottom-color: rgba(236, 168, 171, 0.4);
}

.hover\:border-l-primary-lightest-40:hover{
  border-left-color: rgba(236, 168, 171, 0.4);
}

.hover\:border-secondary-darkest-40:hover{
  border-color: rgba(62, 69, 37, 0.4);
}

.hover\:border-t-secondary-darkest-40:hover{
  border-top-color: rgba(62, 69, 37, 0.4);
}

.hover\:border-r-secondary-darkest-40:hover{
  border-right-color: rgba(62, 69, 37, 0.4);
}

.hover\:border-b-secondary-darkest-40:hover{
  border-bottom-color: rgba(62, 69, 37, 0.4);
}

.hover\:border-l-secondary-darkest-40:hover{
  border-left-color: rgba(62, 69, 37, 0.4);
}

.hover\:border-secondary-darker-40:hover{
  border-color: rgba(94, 104, 55, 0.4);
}

.hover\:border-t-secondary-darker-40:hover{
  border-top-color: rgba(94, 104, 55, 0.4);
}

.hover\:border-r-secondary-darker-40:hover{
  border-right-color: rgba(94, 104, 55, 0.4);
}

.hover\:border-b-secondary-darker-40:hover{
  border-bottom-color: rgba(94, 104, 55, 0.4);
}

.hover\:border-l-secondary-darker-40:hover{
  border-left-color: rgba(94, 104, 55, 0.4);
}

.hover\:border-secondary-dark-40:hover{
  border-color: rgba(125, 138, 74, 0.4);
}

.hover\:border-t-secondary-dark-40:hover{
  border-top-color: rgba(125, 138, 74, 0.4);
}

.hover\:border-r-secondary-dark-40:hover{
  border-right-color: rgba(125, 138, 74, 0.4);
}

.hover\:border-b-secondary-dark-40:hover{
  border-bottom-color: rgba(125, 138, 74, 0.4);
}

.hover\:border-l-secondary-dark-40:hover{
  border-left-color: rgba(125, 138, 74, 0.4);
}

.hover\:border-secondary-40:hover{
  border-color: rgba(156, 173, 92, 0.4);
}

.hover\:border-t-secondary-40:hover{
  border-top-color: rgba(156, 173, 92, 0.4);
}

.hover\:border-r-secondary-40:hover{
  border-right-color: rgba(156, 173, 92, 0.4);
}

.hover\:border-b-secondary-40:hover{
  border-bottom-color: rgba(156, 173, 92, 0.4);
}

.hover\:border-l-secondary-40:hover{
  border-left-color: rgba(156, 173, 92, 0.4);
}

.hover\:border-secondary-light-40:hover{
  border-color: rgba(176, 189, 125, 0.4);
}

.hover\:border-t-secondary-light-40:hover{
  border-top-color: rgba(176, 189, 125, 0.4);
}

.hover\:border-r-secondary-light-40:hover{
  border-right-color: rgba(176, 189, 125, 0.4);
}

.hover\:border-b-secondary-light-40:hover{
  border-bottom-color: rgba(176, 189, 125, 0.4);
}

.hover\:border-l-secondary-light-40:hover{
  border-left-color: rgba(176, 189, 125, 0.4);
}

.hover\:border-secondary-lighter-40:hover{
  border-color: rgba(196, 206, 157, 0.4);
}

.hover\:border-t-secondary-lighter-40:hover{
  border-top-color: rgba(196, 206, 157, 0.4);
}

.hover\:border-r-secondary-lighter-40:hover{
  border-right-color: rgba(196, 206, 157, 0.4);
}

.hover\:border-b-secondary-lighter-40:hover{
  border-bottom-color: rgba(196, 206, 157, 0.4);
}

.hover\:border-l-secondary-lighter-40:hover{
  border-left-color: rgba(196, 206, 157, 0.4);
}

.hover\:border-secondary-lightest-40:hover{
  border-color: rgba(215, 222, 190, 0.4);
}

.hover\:border-t-secondary-lightest-40:hover{
  border-top-color: rgba(215, 222, 190, 0.4);
}

.hover\:border-r-secondary-lightest-40:hover{
  border-right-color: rgba(215, 222, 190, 0.4);
}

.hover\:border-b-secondary-lightest-40:hover{
  border-bottom-color: rgba(215, 222, 190, 0.4);
}

.hover\:border-l-secondary-lightest-40:hover{
  border-left-color: rgba(215, 222, 190, 0.4);
}

.hover\:border-tertiary-darkest-40:hover{
  border-color: rgba(15, 47, 33, 0.4);
}

.hover\:border-t-tertiary-darkest-40:hover{
  border-top-color: rgba(15, 47, 33, 0.4);
}

.hover\:border-r-tertiary-darkest-40:hover{
  border-right-color: rgba(15, 47, 33, 0.4);
}

.hover\:border-b-tertiary-darkest-40:hover{
  border-bottom-color: rgba(15, 47, 33, 0.4);
}

.hover\:border-l-tertiary-darkest-40:hover{
  border-left-color: rgba(15, 47, 33, 0.4);
}

.hover\:border-tertiary-darker-40:hover{
  border-color: rgba(26, 71, 49, 0.4);
}

.hover\:border-t-tertiary-darker-40:hover{
  border-top-color: rgba(26, 71, 49, 0.4);
}

.hover\:border-r-tertiary-darker-40:hover{
  border-right-color: rgba(26, 71, 49, 0.4);
}

.hover\:border-b-tertiary-darker-40:hover{
  border-bottom-color: rgba(26, 71, 49, 0.4);
}

.hover\:border-l-tertiary-darker-40:hover{
  border-left-color: rgba(26, 71, 49, 0.4);
}

.hover\:border-tertiary-dark-40:hover{
  border-color: rgba(31, 157, 85, 0.4);
}

.hover\:border-t-tertiary-dark-40:hover{
  border-top-color: rgba(31, 157, 85, 0.4);
}

.hover\:border-r-tertiary-dark-40:hover{
  border-right-color: rgba(31, 157, 85, 0.4);
}

.hover\:border-b-tertiary-dark-40:hover{
  border-bottom-color: rgba(31, 157, 85, 0.4);
}

.hover\:border-l-tertiary-dark-40:hover{
  border-left-color: rgba(31, 157, 85, 0.4);
}

.hover\:border-tertiary-40:hover{
  border-color: rgba(255, 197, 0, 0.4);
}

.hover\:border-t-tertiary-40:hover{
  border-top-color: rgba(255, 197, 0, 0.4);
}

.hover\:border-r-tertiary-40:hover{
  border-right-color: rgba(255, 197, 0, 0.4);
}

.hover\:border-b-tertiary-40:hover{
  border-bottom-color: rgba(255, 197, 0, 0.4);
}

.hover\:border-l-tertiary-40:hover{
  border-left-color: rgba(255, 197, 0, 0.4);
}

.hover\:border-tertiary-light-40:hover{
  border-color: rgba(81, 216, 138, 0.4);
}

.hover\:border-t-tertiary-light-40:hover{
  border-top-color: rgba(81, 216, 138, 0.4);
}

.hover\:border-r-tertiary-light-40:hover{
  border-right-color: rgba(81, 216, 138, 0.4);
}

.hover\:border-b-tertiary-light-40:hover{
  border-bottom-color: rgba(81, 216, 138, 0.4);
}

.hover\:border-l-tertiary-light-40:hover{
  border-left-color: rgba(81, 216, 138, 0.4);
}

.hover\:border-tertiary-lighter-40:hover{
  border-color: rgba(162, 245, 191, 0.4);
}

.hover\:border-t-tertiary-lighter-40:hover{
  border-top-color: rgba(162, 245, 191, 0.4);
}

.hover\:border-r-tertiary-lighter-40:hover{
  border-right-color: rgba(162, 245, 191, 0.4);
}

.hover\:border-b-tertiary-lighter-40:hover{
  border-bottom-color: rgba(162, 245, 191, 0.4);
}

.hover\:border-l-tertiary-lighter-40:hover{
  border-left-color: rgba(162, 245, 191, 0.4);
}

.hover\:border-tertiary-lightest-40:hover{
  border-color: rgba(227, 252, 236, 0.4);
}

.hover\:border-t-tertiary-lightest-40:hover{
  border-top-color: rgba(227, 252, 236, 0.4);
}

.hover\:border-r-tertiary-lightest-40:hover{
  border-right-color: rgba(227, 252, 236, 0.4);
}

.hover\:border-b-tertiary-lightest-40:hover{
  border-bottom-color: rgba(227, 252, 236, 0.4);
}

.hover\:border-l-tertiary-lightest-40:hover{
  border-left-color: rgba(227, 252, 236, 0.4);
}

.hover\:border-default-40:hover{
  border-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-t-default-40:hover{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-r-default-40:hover{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-b-default-40:hover{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.hover\:border-l-default-40:hover{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-border-40:focus{
  border-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-t-border-40:focus{
  border-top-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-r-border-40:focus{
  border-right-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-b-border-40:focus{
  border-bottom-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-l-border-40:focus{
  border-left-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-form-40:focus{
  border-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-t-form-40:focus{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-r-form-40:focus{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-b-form-40:focus{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-l-form-40:focus{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-form-active-40:focus{
  border-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-t-form-active-40:focus{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-r-form-active-40:focus{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-b-form-active-40:focus{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-l-form-active-40:focus{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-black-40:focus{
  border-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-t-black-40:focus{
  border-top-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-r-black-40:focus{
  border-right-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-b-black-40:focus{
  border-bottom-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-l-black-40:focus{
  border-left-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-grey-darkest-40:focus{
  border-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-t-grey-darkest-40:focus{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-r-grey-darkest-40:focus{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-b-grey-darkest-40:focus{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-l-grey-darkest-40:focus{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-grey-darker-40:focus{
  border-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-t-grey-darker-40:focus{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-r-grey-darker-40:focus{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-b-grey-darker-40:focus{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-l-grey-darker-40:focus{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-grey-dark-40:focus{
  border-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-t-grey-dark-40:focus{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-r-grey-dark-40:focus{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-b-grey-dark-40:focus{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-l-grey-dark-40:focus{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-grey-40:focus{
  border-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-t-grey-40:focus{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-r-grey-40:focus{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-b-grey-40:focus{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-l-grey-40:focus{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-grey-light-40:focus{
  border-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-t-grey-light-40:focus{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-r-grey-light-40:focus{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-b-grey-light-40:focus{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-l-grey-light-40:focus{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-grey-lighter-40:focus{
  border-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-t-grey-lighter-40:focus{
  border-top-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-r-grey-lighter-40:focus{
  border-right-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-b-grey-lighter-40:focus{
  border-bottom-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-l-grey-lighter-40:focus{
  border-left-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-grey-lightest-40:focus{
  border-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-t-grey-lightest-40:focus{
  border-top-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-r-grey-lightest-40:focus{
  border-right-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-b-grey-lightest-40:focus{
  border-bottom-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-l-grey-lightest-40:focus{
  border-left-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-white-40:focus{
  border-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-t-white-40:focus{
  border-top-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-r-white-40:focus{
  border-right-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-b-white-40:focus{
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-l-white-40:focus{
  border-left-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-red-40:focus{
  border-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-t-red-40:focus{
  border-top-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-r-red-40:focus{
  border-right-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-b-red-40:focus{
  border-bottom-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-l-red-40:focus{
  border-left-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-green-40:focus{
  border-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-t-green-40:focus{
  border-top-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-r-green-40:focus{
  border-right-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-b-green-40:focus{
  border-bottom-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-l-green-40:focus{
  border-left-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-blue-40:focus{
  border-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-t-blue-40:focus{
  border-top-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-r-blue-40:focus{
  border-right-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-b-blue-40:focus{
  border-bottom-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-l-blue-40:focus{
  border-left-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-orange-40:focus{
  border-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-t-orange-40:focus{
  border-top-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-r-orange-40:focus{
  border-right-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-b-orange-40:focus{
  border-bottom-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-l-orange-40:focus{
  border-left-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-primary-darkest-40:focus{
  border-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-t-primary-darkest-40:focus{
  border-top-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-r-primary-darkest-40:focus{
  border-right-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-b-primary-darkest-40:focus{
  border-bottom-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-l-primary-darkest-40:focus{
  border-left-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-primary-darker-40:focus{
  border-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-t-primary-darker-40:focus{
  border-top-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-r-primary-darker-40:focus{
  border-right-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-b-primary-darker-40:focus{
  border-bottom-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-l-primary-darker-40:focus{
  border-left-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-primary-dark-40:focus{
  border-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-t-primary-dark-40:focus{
  border-top-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-r-primary-dark-40:focus{
  border-right-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-b-primary-dark-40:focus{
  border-bottom-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-l-primary-dark-40:focus{
  border-left-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-primary-40:focus{
  border-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-t-primary-40:focus{
  border-top-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-r-primary-40:focus{
  border-right-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-b-primary-40:focus{
  border-bottom-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-l-primary-40:focus{
  border-left-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-primary-light-40:focus{
  border-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-t-primary-light-40:focus{
  border-top-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-r-primary-light-40:focus{
  border-right-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-b-primary-light-40:focus{
  border-bottom-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-l-primary-light-40:focus{
  border-left-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-primary-lighter-40:focus{
  border-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-t-primary-lighter-40:focus{
  border-top-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-r-primary-lighter-40:focus{
  border-right-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-b-primary-lighter-40:focus{
  border-bottom-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-l-primary-lighter-40:focus{
  border-left-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-primary-lightest-40:focus{
  border-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-t-primary-lightest-40:focus{
  border-top-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-r-primary-lightest-40:focus{
  border-right-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-b-primary-lightest-40:focus{
  border-bottom-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-l-primary-lightest-40:focus{
  border-left-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-secondary-darkest-40:focus{
  border-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-t-secondary-darkest-40:focus{
  border-top-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-r-secondary-darkest-40:focus{
  border-right-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-b-secondary-darkest-40:focus{
  border-bottom-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-l-secondary-darkest-40:focus{
  border-left-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-secondary-darker-40:focus{
  border-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-t-secondary-darker-40:focus{
  border-top-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-r-secondary-darker-40:focus{
  border-right-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-b-secondary-darker-40:focus{
  border-bottom-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-l-secondary-darker-40:focus{
  border-left-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-secondary-dark-40:focus{
  border-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-t-secondary-dark-40:focus{
  border-top-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-r-secondary-dark-40:focus{
  border-right-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-b-secondary-dark-40:focus{
  border-bottom-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-l-secondary-dark-40:focus{
  border-left-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-secondary-40:focus{
  border-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-t-secondary-40:focus{
  border-top-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-r-secondary-40:focus{
  border-right-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-b-secondary-40:focus{
  border-bottom-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-l-secondary-40:focus{
  border-left-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-secondary-light-40:focus{
  border-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-t-secondary-light-40:focus{
  border-top-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-r-secondary-light-40:focus{
  border-right-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-b-secondary-light-40:focus{
  border-bottom-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-l-secondary-light-40:focus{
  border-left-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-secondary-lighter-40:focus{
  border-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-t-secondary-lighter-40:focus{
  border-top-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-r-secondary-lighter-40:focus{
  border-right-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-b-secondary-lighter-40:focus{
  border-bottom-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-l-secondary-lighter-40:focus{
  border-left-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-secondary-lightest-40:focus{
  border-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-t-secondary-lightest-40:focus{
  border-top-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-r-secondary-lightest-40:focus{
  border-right-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-b-secondary-lightest-40:focus{
  border-bottom-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-l-secondary-lightest-40:focus{
  border-left-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-tertiary-darkest-40:focus{
  border-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-t-tertiary-darkest-40:focus{
  border-top-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-r-tertiary-darkest-40:focus{
  border-right-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-b-tertiary-darkest-40:focus{
  border-bottom-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-l-tertiary-darkest-40:focus{
  border-left-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-tertiary-darker-40:focus{
  border-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-t-tertiary-darker-40:focus{
  border-top-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-r-tertiary-darker-40:focus{
  border-right-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-b-tertiary-darker-40:focus{
  border-bottom-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-l-tertiary-darker-40:focus{
  border-left-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-tertiary-dark-40:focus{
  border-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-t-tertiary-dark-40:focus{
  border-top-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-r-tertiary-dark-40:focus{
  border-right-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-b-tertiary-dark-40:focus{
  border-bottom-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-l-tertiary-dark-40:focus{
  border-left-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-tertiary-40:focus{
  border-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-t-tertiary-40:focus{
  border-top-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-r-tertiary-40:focus{
  border-right-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-b-tertiary-40:focus{
  border-bottom-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-l-tertiary-40:focus{
  border-left-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-tertiary-light-40:focus{
  border-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-t-tertiary-light-40:focus{
  border-top-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-r-tertiary-light-40:focus{
  border-right-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-b-tertiary-light-40:focus{
  border-bottom-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-l-tertiary-light-40:focus{
  border-left-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-tertiary-lighter-40:focus{
  border-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-t-tertiary-lighter-40:focus{
  border-top-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-r-tertiary-lighter-40:focus{
  border-right-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-b-tertiary-lighter-40:focus{
  border-bottom-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-l-tertiary-lighter-40:focus{
  border-left-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-tertiary-lightest-40:focus{
  border-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-t-tertiary-lightest-40:focus{
  border-top-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-r-tertiary-lightest-40:focus{
  border-right-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-b-tertiary-lightest-40:focus{
  border-bottom-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-l-tertiary-lightest-40:focus{
  border-left-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-default-40:focus{
  border-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-t-default-40:focus{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-r-default-40:focus{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-b-default-40:focus{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-l-default-40:focus{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-border-40:focus{
  border-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-t-border-40:focus{
  border-top-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-r-border-40:focus{
  border-right-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-b-border-40:focus{
  border-bottom-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-l-border-40:focus{
  border-left-color: rgba(230, 235, 245, 0.4);
}

.focus\:border-form-40:focus{
  border-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-t-form-40:focus{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-r-form-40:focus{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-b-form-40:focus{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-l-form-40:focus{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-form-active-40:focus{
  border-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-t-form-active-40:focus{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-r-form-active-40:focus{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-b-form-active-40:focus{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-l-form-active-40:focus{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-black-40:focus{
  border-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-t-black-40:focus{
  border-top-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-r-black-40:focus{
  border-right-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-b-black-40:focus{
  border-bottom-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-l-black-40:focus{
  border-left-color: rgba(33, 37, 41, 0.4);
}

.focus\:border-grey-darkest-40:focus{
  border-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-t-grey-darkest-40:focus{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-r-grey-darkest-40:focus{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-b-grey-darkest-40:focus{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-l-grey-darkest-40:focus{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-grey-darker-40:focus{
  border-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-t-grey-darker-40:focus{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-r-grey-darker-40:focus{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-b-grey-darker-40:focus{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-l-grey-darker-40:focus{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.focus\:border-grey-dark-40:focus{
  border-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-t-grey-dark-40:focus{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-r-grey-dark-40:focus{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-b-grey-dark-40:focus{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-l-grey-dark-40:focus{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.focus\:border-grey-40:focus{
  border-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-t-grey-40:focus{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-r-grey-40:focus{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-b-grey-40:focus{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-l-grey-40:focus{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.focus\:border-grey-light-40:focus{
  border-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-t-grey-light-40:focus{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-r-grey-light-40:focus{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-b-grey-light-40:focus{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-l-grey-light-40:focus{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-grey-lighter-40:focus{
  border-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-t-grey-lighter-40:focus{
  border-top-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-r-grey-lighter-40:focus{
  border-right-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-b-grey-lighter-40:focus{
  border-bottom-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-l-grey-lighter-40:focus{
  border-left-color: rgba(222, 228, 233, 0.4);
}

.focus\:border-grey-lightest-40:focus{
  border-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-t-grey-lightest-40:focus{
  border-top-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-r-grey-lightest-40:focus{
  border-right-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-b-grey-lightest-40:focus{
  border-bottom-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-l-grey-lightest-40:focus{
  border-left-color: rgba(244, 246, 249, 0.4);
}

.focus\:border-white-40:focus{
  border-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-t-white-40:focus{
  border-top-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-r-white-40:focus{
  border-right-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-b-white-40:focus{
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-l-white-40:focus{
  border-left-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-red-40:focus{
  border-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-t-red-40:focus{
  border-top-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-r-red-40:focus{
  border-right-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-b-red-40:focus{
  border-bottom-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-l-red-40:focus{
  border-left-color: rgba(211, 26, 8, 0.4);
}

.focus\:border-green-40:focus{
  border-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-t-green-40:focus{
  border-top-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-r-green-40:focus{
  border-right-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-b-green-40:focus{
  border-bottom-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-l-green-40:focus{
  border-left-color: rgba(102, 187, 8, 0.4);
}

.focus\:border-blue-40:focus{
  border-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-t-blue-40:focus{
  border-top-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-r-blue-40:focus{
  border-right-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-b-blue-40:focus{
  border-bottom-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-l-blue-40:focus{
  border-left-color: rgba(31, 168, 226, 0.4);
}

.focus\:border-orange-40:focus{
  border-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-t-orange-40:focus{
  border-top-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-r-orange-40:focus{
  border-right-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-b-orange-40:focus{
  border-bottom-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-l-orange-40:focus{
  border-left-color: rgba(247, 148, 14, 0.4);
}

.focus\:border-primary-darkest-40:focus{
  border-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-t-primary-darkest-40:focus{
  border-top-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-r-primary-darkest-40:focus{
  border-right-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-b-primary-darkest-40:focus{
  border-bottom-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-l-primary-darkest-40:focus{
  border-left-color: rgba(83, 15, 18, 0.4);
}

.focus\:border-primary-darker-40:focus{
  border-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-t-primary-darker-40:focus{
  border-top-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-r-primary-darker-40:focus{
  border-right-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-b-primary-darker-40:focus{
  border-bottom-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-l-primary-darker-40:focus{
  border-left-color: rgba(124, 23, 27, 0.4);
}

.focus\:border-primary-dark-40:focus{
  border-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-t-primary-dark-40:focus{
  border-top-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-r-primary-dark-40:focus{
  border-right-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-b-primary-dark-40:focus{
  border-bottom-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-l-primary-dark-40:focus{
  border-left-color: rgba(166, 30, 36, 0.4);
}

.focus\:border-primary-40:focus{
  border-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-t-primary-40:focus{
  border-top-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-r-primary-40:focus{
  border-right-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-b-primary-40:focus{
  border-bottom-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-l-primary-40:focus{
  border-left-color: rgba(207, 38, 45, 0.4);
}

.focus\:border-primary-light-40:focus{
  border-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-t-primary-light-40:focus{
  border-top-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-r-primary-light-40:focus{
  border-right-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-b-primary-light-40:focus{
  border-bottom-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-l-primary-light-40:focus{
  border-left-color: rgba(217, 81, 87, 0.4);
}

.focus\:border-primary-lighter-40:focus{
  border-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-t-primary-lighter-40:focus{
  border-top-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-r-primary-lighter-40:focus{
  border-right-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-b-primary-lighter-40:focus{
  border-bottom-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-l-primary-lighter-40:focus{
  border-left-color: rgba(226, 125, 129, 0.4);
}

.focus\:border-primary-lightest-40:focus{
  border-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-t-primary-lightest-40:focus{
  border-top-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-r-primary-lightest-40:focus{
  border-right-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-b-primary-lightest-40:focus{
  border-bottom-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-l-primary-lightest-40:focus{
  border-left-color: rgba(236, 168, 171, 0.4);
}

.focus\:border-secondary-darkest-40:focus{
  border-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-t-secondary-darkest-40:focus{
  border-top-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-r-secondary-darkest-40:focus{
  border-right-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-b-secondary-darkest-40:focus{
  border-bottom-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-l-secondary-darkest-40:focus{
  border-left-color: rgba(62, 69, 37, 0.4);
}

.focus\:border-secondary-darker-40:focus{
  border-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-t-secondary-darker-40:focus{
  border-top-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-r-secondary-darker-40:focus{
  border-right-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-b-secondary-darker-40:focus{
  border-bottom-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-l-secondary-darker-40:focus{
  border-left-color: rgba(94, 104, 55, 0.4);
}

.focus\:border-secondary-dark-40:focus{
  border-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-t-secondary-dark-40:focus{
  border-top-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-r-secondary-dark-40:focus{
  border-right-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-b-secondary-dark-40:focus{
  border-bottom-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-l-secondary-dark-40:focus{
  border-left-color: rgba(125, 138, 74, 0.4);
}

.focus\:border-secondary-40:focus{
  border-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-t-secondary-40:focus{
  border-top-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-r-secondary-40:focus{
  border-right-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-b-secondary-40:focus{
  border-bottom-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-l-secondary-40:focus{
  border-left-color: rgba(156, 173, 92, 0.4);
}

.focus\:border-secondary-light-40:focus{
  border-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-t-secondary-light-40:focus{
  border-top-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-r-secondary-light-40:focus{
  border-right-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-b-secondary-light-40:focus{
  border-bottom-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-l-secondary-light-40:focus{
  border-left-color: rgba(176, 189, 125, 0.4);
}

.focus\:border-secondary-lighter-40:focus{
  border-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-t-secondary-lighter-40:focus{
  border-top-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-r-secondary-lighter-40:focus{
  border-right-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-b-secondary-lighter-40:focus{
  border-bottom-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-l-secondary-lighter-40:focus{
  border-left-color: rgba(196, 206, 157, 0.4);
}

.focus\:border-secondary-lightest-40:focus{
  border-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-t-secondary-lightest-40:focus{
  border-top-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-r-secondary-lightest-40:focus{
  border-right-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-b-secondary-lightest-40:focus{
  border-bottom-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-l-secondary-lightest-40:focus{
  border-left-color: rgba(215, 222, 190, 0.4);
}

.focus\:border-tertiary-darkest-40:focus{
  border-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-t-tertiary-darkest-40:focus{
  border-top-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-r-tertiary-darkest-40:focus{
  border-right-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-b-tertiary-darkest-40:focus{
  border-bottom-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-l-tertiary-darkest-40:focus{
  border-left-color: rgba(15, 47, 33, 0.4);
}

.focus\:border-tertiary-darker-40:focus{
  border-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-t-tertiary-darker-40:focus{
  border-top-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-r-tertiary-darker-40:focus{
  border-right-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-b-tertiary-darker-40:focus{
  border-bottom-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-l-tertiary-darker-40:focus{
  border-left-color: rgba(26, 71, 49, 0.4);
}

.focus\:border-tertiary-dark-40:focus{
  border-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-t-tertiary-dark-40:focus{
  border-top-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-r-tertiary-dark-40:focus{
  border-right-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-b-tertiary-dark-40:focus{
  border-bottom-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-l-tertiary-dark-40:focus{
  border-left-color: rgba(31, 157, 85, 0.4);
}

.focus\:border-tertiary-40:focus{
  border-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-t-tertiary-40:focus{
  border-top-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-r-tertiary-40:focus{
  border-right-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-b-tertiary-40:focus{
  border-bottom-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-l-tertiary-40:focus{
  border-left-color: rgba(255, 197, 0, 0.4);
}

.focus\:border-tertiary-light-40:focus{
  border-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-t-tertiary-light-40:focus{
  border-top-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-r-tertiary-light-40:focus{
  border-right-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-b-tertiary-light-40:focus{
  border-bottom-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-l-tertiary-light-40:focus{
  border-left-color: rgba(81, 216, 138, 0.4);
}

.focus\:border-tertiary-lighter-40:focus{
  border-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-t-tertiary-lighter-40:focus{
  border-top-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-r-tertiary-lighter-40:focus{
  border-right-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-b-tertiary-lighter-40:focus{
  border-bottom-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-l-tertiary-lighter-40:focus{
  border-left-color: rgba(162, 245, 191, 0.4);
}

.focus\:border-tertiary-lightest-40:focus{
  border-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-t-tertiary-lightest-40:focus{
  border-top-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-r-tertiary-lightest-40:focus{
  border-right-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-b-tertiary-lightest-40:focus{
  border-bottom-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-l-tertiary-lightest-40:focus{
  border-left-color: rgba(227, 252, 236, 0.4);
}

.focus\:border-default-40:focus{
  border-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-t-default-40:focus{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-r-default-40:focus{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-b-default-40:focus{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.focus\:border-l-default-40:focus{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-border-40{
  border-color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:border-t-border-40{
  border-top-color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:border-r-border-40{
  border-right-color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:border-b-border-40{
  border-bottom-color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:border-l-border-40{
  border-left-color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:border-form-40{
  border-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-t-form-40{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-r-form-40{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-b-form-40{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-l-form-40{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-form-active-40{
  border-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-t-form-active-40{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-r-form-active-40{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-b-form-active-40{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-l-form-active-40{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-black-40{
  border-color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:border-t-black-40{
  border-top-color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:border-r-black-40{
  border-right-color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:border-b-black-40{
  border-bottom-color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:border-l-black-40{
  border-left-color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:border-grey-darkest-40{
  border-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-t-grey-darkest-40{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-r-grey-darkest-40{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-b-grey-darkest-40{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-l-grey-darkest-40{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-grey-darker-40{
  border-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-t-grey-darker-40{
  border-top-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-r-grey-darker-40{
  border-right-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-b-grey-darker-40{
  border-bottom-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-l-grey-darker-40{
  border-left-color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:border-grey-dark-40{
  border-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-t-grey-dark-40{
  border-top-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-r-grey-dark-40{
  border-right-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-b-grey-dark-40{
  border-bottom-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-l-grey-dark-40{
  border-left-color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:border-grey-40{
  border-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-t-grey-40{
  border-top-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-r-grey-40{
  border-right-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-b-grey-40{
  border-bottom-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-l-grey-40{
  border-left-color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:border-grey-light-40{
  border-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-t-grey-light-40{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-r-grey-light-40{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-b-grey-light-40{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-l-grey-light-40{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-grey-lighter-40{
  border-color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:border-t-grey-lighter-40{
  border-top-color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:border-r-grey-lighter-40{
  border-right-color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:border-b-grey-lighter-40{
  border-bottom-color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:border-l-grey-lighter-40{
  border-left-color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:border-grey-lightest-40{
  border-color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:border-t-grey-lightest-40{
  border-top-color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:border-r-grey-lightest-40{
  border-right-color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:border-b-grey-lightest-40{
  border-bottom-color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:border-l-grey-lightest-40{
  border-left-color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:border-white-40{
  border-color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:border-t-white-40{
  border-top-color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:border-r-white-40{
  border-right-color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:border-b-white-40{
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:border-l-white-40{
  border-left-color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:border-red-40{
  border-color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:border-t-red-40{
  border-top-color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:border-r-red-40{
  border-right-color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:border-b-red-40{
  border-bottom-color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:border-l-red-40{
  border-left-color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:border-green-40{
  border-color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:border-t-green-40{
  border-top-color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:border-r-green-40{
  border-right-color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:border-b-green-40{
  border-bottom-color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:border-l-green-40{
  border-left-color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:border-blue-40{
  border-color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:border-t-blue-40{
  border-top-color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:border-r-blue-40{
  border-right-color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:border-b-blue-40{
  border-bottom-color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:border-l-blue-40{
  border-left-color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:border-orange-40{
  border-color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:border-t-orange-40{
  border-top-color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:border-r-orange-40{
  border-right-color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:border-b-orange-40{
  border-bottom-color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:border-l-orange-40{
  border-left-color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:border-primary-darkest-40{
  border-color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:border-t-primary-darkest-40{
  border-top-color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:border-r-primary-darkest-40{
  border-right-color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:border-b-primary-darkest-40{
  border-bottom-color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:border-l-primary-darkest-40{
  border-left-color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:border-primary-darker-40{
  border-color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:border-t-primary-darker-40{
  border-top-color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:border-r-primary-darker-40{
  border-right-color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:border-b-primary-darker-40{
  border-bottom-color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:border-l-primary-darker-40{
  border-left-color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:border-primary-dark-40{
  border-color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:border-t-primary-dark-40{
  border-top-color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:border-r-primary-dark-40{
  border-right-color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:border-b-primary-dark-40{
  border-bottom-color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:border-l-primary-dark-40{
  border-left-color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:border-primary-40{
  border-color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:border-t-primary-40{
  border-top-color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:border-r-primary-40{
  border-right-color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:border-b-primary-40{
  border-bottom-color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:border-l-primary-40{
  border-left-color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:border-primary-light-40{
  border-color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:border-t-primary-light-40{
  border-top-color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:border-r-primary-light-40{
  border-right-color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:border-b-primary-light-40{
  border-bottom-color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:border-l-primary-light-40{
  border-left-color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:border-primary-lighter-40{
  border-color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:border-t-primary-lighter-40{
  border-top-color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:border-r-primary-lighter-40{
  border-right-color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:border-b-primary-lighter-40{
  border-bottom-color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:border-l-primary-lighter-40{
  border-left-color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:border-primary-lightest-40{
  border-color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:border-t-primary-lightest-40{
  border-top-color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:border-r-primary-lightest-40{
  border-right-color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:border-b-primary-lightest-40{
  border-bottom-color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:border-l-primary-lightest-40{
  border-left-color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:border-secondary-darkest-40{
  border-color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:border-t-secondary-darkest-40{
  border-top-color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:border-r-secondary-darkest-40{
  border-right-color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:border-b-secondary-darkest-40{
  border-bottom-color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:border-l-secondary-darkest-40{
  border-left-color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:border-secondary-darker-40{
  border-color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:border-t-secondary-darker-40{
  border-top-color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:border-r-secondary-darker-40{
  border-right-color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:border-b-secondary-darker-40{
  border-bottom-color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:border-l-secondary-darker-40{
  border-left-color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:border-secondary-dark-40{
  border-color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:border-t-secondary-dark-40{
  border-top-color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:border-r-secondary-dark-40{
  border-right-color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:border-b-secondary-dark-40{
  border-bottom-color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:border-l-secondary-dark-40{
  border-left-color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:border-secondary-40{
  border-color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:border-t-secondary-40{
  border-top-color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:border-r-secondary-40{
  border-right-color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:border-b-secondary-40{
  border-bottom-color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:border-l-secondary-40{
  border-left-color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:border-secondary-light-40{
  border-color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:border-t-secondary-light-40{
  border-top-color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:border-r-secondary-light-40{
  border-right-color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:border-b-secondary-light-40{
  border-bottom-color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:border-l-secondary-light-40{
  border-left-color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:border-secondary-lighter-40{
  border-color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:border-t-secondary-lighter-40{
  border-top-color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:border-r-secondary-lighter-40{
  border-right-color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:border-b-secondary-lighter-40{
  border-bottom-color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:border-l-secondary-lighter-40{
  border-left-color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:border-secondary-lightest-40{
  border-color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:border-t-secondary-lightest-40{
  border-top-color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:border-r-secondary-lightest-40{
  border-right-color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:border-b-secondary-lightest-40{
  border-bottom-color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:border-l-secondary-lightest-40{
  border-left-color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:border-tertiary-darkest-40{
  border-color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-darkest-40{
  border-top-color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-darkest-40{
  border-right-color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-darkest-40{
  border-bottom-color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-darkest-40{
  border-left-color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:border-tertiary-darker-40{
  border-color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-darker-40{
  border-top-color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-darker-40{
  border-right-color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-darker-40{
  border-bottom-color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-darker-40{
  border-left-color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:border-tertiary-dark-40{
  border-color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-dark-40{
  border-top-color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-dark-40{
  border-right-color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-dark-40{
  border-bottom-color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-dark-40{
  border-left-color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:border-tertiary-40{
  border-color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-40{
  border-top-color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-40{
  border-right-color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-40{
  border-bottom-color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-40{
  border-left-color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:border-tertiary-light-40{
  border-color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-light-40{
  border-top-color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-light-40{
  border-right-color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-light-40{
  border-bottom-color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-light-40{
  border-left-color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:border-tertiary-lighter-40{
  border-color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-lighter-40{
  border-top-color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-lighter-40{
  border-right-color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-lighter-40{
  border-bottom-color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-lighter-40{
  border-left-color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:border-tertiary-lightest-40{
  border-color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:border-t-tertiary-lightest-40{
  border-top-color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:border-r-tertiary-lightest-40{
  border-right-color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:border-b-tertiary-lightest-40{
  border-bottom-color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:border-l-tertiary-lightest-40{
  border-left-color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:border-default-40{
  border-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-t-default-40{
  border-top-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-r-default-40{
  border-right-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-b-default-40{
  border-bottom-color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:border-l-default-40{
  border-left-color: rgba(179, 188, 197, 0.4);
}

.text-border-40{
  color: rgba(230, 235, 245, 0.4);
}

.text-form-40{
  color: rgba(121, 130, 139, 0.4);
}

.text-form-active-40{
  color: rgba(66, 80, 92, 0.4);
}

.text-black-40{
  color: rgba(33, 37, 41, 0.4);
}

.text-grey-darkest-40{
  color: rgba(154, 165, 192, 0.4);
}

.text-grey-darker-40{
  color: rgba(154, 165, 192, 0.4);
}

.text-grey-dark-40{
  color: rgba(66, 80, 92, 0.4);
}

.text-grey-40{
  color: rgba(121, 130, 139, 0.4);
}

.text-grey-light-40{
  color: rgba(179, 188, 197, 0.4);
}

.text-grey-lighter-40{
  color: rgba(222, 228, 233, 0.4);
}

.text-grey-lightest-40{
  color: rgba(244, 246, 249, 0.4);
}

.text-white-40{
  color: rgba(255, 255, 255, 0.4);
}

.text-red-40{
  color: rgba(211, 26, 8, 0.4);
}

.text-green-40{
  color: rgba(102, 187, 8, 0.4);
}

.text-blue-40{
  color: rgba(31, 168, 226, 0.4);
}

.text-orange-40{
  color: rgba(247, 148, 14, 0.4);
}

.text-primary-darkest-40{
  color: rgba(83, 15, 18, 0.4);
}

.text-primary-darker-40{
  color: rgba(124, 23, 27, 0.4);
}

.text-primary-dark-40{
  color: rgba(166, 30, 36, 0.4);
}

.text-primary-40{
  color: rgba(207, 38, 45, 0.4);
}

.text-primary-light-40{
  color: rgba(217, 81, 87, 0.4);
}

.text-primary-lighter-40{
  color: rgba(226, 125, 129, 0.4);
}

.text-primary-lightest-40{
  color: rgba(236, 168, 171, 0.4);
}

.text-secondary-darkest-40{
  color: rgba(62, 69, 37, 0.4);
}

.text-secondary-darker-40{
  color: rgba(94, 104, 55, 0.4);
}

.text-secondary-dark-40{
  color: rgba(125, 138, 74, 0.4);
}

.text-secondary-40{
  color: rgba(156, 173, 92, 0.4);
}

.text-secondary-light-40{
  color: rgba(176, 189, 125, 0.4);
}

.text-secondary-lighter-40{
  color: rgba(196, 206, 157, 0.4);
}

.text-secondary-lightest-40{
  color: rgba(215, 222, 190, 0.4);
}

.text-tertiary-darkest-40{
  color: rgba(15, 47, 33, 0.4);
}

.text-tertiary-darker-40{
  color: rgba(26, 71, 49, 0.4);
}

.text-tertiary-dark-40{
  color: rgba(31, 157, 85, 0.4);
}

.text-tertiary-40{
  color: rgba(255, 197, 0, 0.4);
}

.text-tertiary-light-40{
  color: rgba(81, 216, 138, 0.4);
}

.text-tertiary-lighter-40{
  color: rgba(162, 245, 191, 0.4);
}

.text-tertiary-lightest-40{
  color: rgba(227, 252, 236, 0.4);
}

.hover\:text-border-40:hover{
  color: rgba(230, 235, 245, 0.4);
}

.hover\:text-form-40:hover{
  color: rgba(121, 130, 139, 0.4);
}

.hover\:text-form-active-40:hover{
  color: rgba(66, 80, 92, 0.4);
}

.hover\:text-black-40:hover{
  color: rgba(33, 37, 41, 0.4);
}

.hover\:text-grey-darkest-40:hover{
  color: rgba(154, 165, 192, 0.4);
}

.hover\:text-grey-darker-40:hover{
  color: rgba(154, 165, 192, 0.4);
}

.hover\:text-grey-dark-40:hover{
  color: rgba(66, 80, 92, 0.4);
}

.hover\:text-grey-40:hover{
  color: rgba(121, 130, 139, 0.4);
}

.hover\:text-grey-light-40:hover{
  color: rgba(179, 188, 197, 0.4);
}

.hover\:text-grey-lighter-40:hover{
  color: rgba(222, 228, 233, 0.4);
}

.hover\:text-grey-lightest-40:hover{
  color: rgba(244, 246, 249, 0.4);
}

.hover\:text-white-40:hover{
  color: rgba(255, 255, 255, 0.4);
}

.hover\:text-red-40:hover{
  color: rgba(211, 26, 8, 0.4);
}

.hover\:text-green-40:hover{
  color: rgba(102, 187, 8, 0.4);
}

.hover\:text-blue-40:hover{
  color: rgba(31, 168, 226, 0.4);
}

.hover\:text-orange-40:hover{
  color: rgba(247, 148, 14, 0.4);
}

.hover\:text-primary-darkest-40:hover{
  color: rgba(83, 15, 18, 0.4);
}

.hover\:text-primary-darker-40:hover{
  color: rgba(124, 23, 27, 0.4);
}

.hover\:text-primary-dark-40:hover{
  color: rgba(166, 30, 36, 0.4);
}

.hover\:text-primary-40:hover{
  color: rgba(207, 38, 45, 0.4);
}

.hover\:text-primary-light-40:hover{
  color: rgba(217, 81, 87, 0.4);
}

.hover\:text-primary-lighter-40:hover{
  color: rgba(226, 125, 129, 0.4);
}

.hover\:text-primary-lightest-40:hover{
  color: rgba(236, 168, 171, 0.4);
}

.hover\:text-secondary-darkest-40:hover{
  color: rgba(62, 69, 37, 0.4);
}

.hover\:text-secondary-darker-40:hover{
  color: rgba(94, 104, 55, 0.4);
}

.hover\:text-secondary-dark-40:hover{
  color: rgba(125, 138, 74, 0.4);
}

.hover\:text-secondary-40:hover{
  color: rgba(156, 173, 92, 0.4);
}

.hover\:text-secondary-light-40:hover{
  color: rgba(176, 189, 125, 0.4);
}

.hover\:text-secondary-lighter-40:hover{
  color: rgba(196, 206, 157, 0.4);
}

.hover\:text-secondary-lightest-40:hover{
  color: rgba(215, 222, 190, 0.4);
}

.hover\:text-tertiary-darkest-40:hover{
  color: rgba(15, 47, 33, 0.4);
}

.hover\:text-tertiary-darker-40:hover{
  color: rgba(26, 71, 49, 0.4);
}

.hover\:text-tertiary-dark-40:hover{
  color: rgba(31, 157, 85, 0.4);
}

.hover\:text-tertiary-40:hover{
  color: rgba(255, 197, 0, 0.4);
}

.hover\:text-tertiary-light-40:hover{
  color: rgba(81, 216, 138, 0.4);
}

.hover\:text-tertiary-lighter-40:hover{
  color: rgba(162, 245, 191, 0.4);
}

.hover\:text-tertiary-lightest-40:hover{
  color: rgba(227, 252, 236, 0.4);
}

.focus\:text-border-40:focus{
  color: rgba(230, 235, 245, 0.4);
}

.focus\:text-form-40:focus{
  color: rgba(121, 130, 139, 0.4);
}

.focus\:text-form-active-40:focus{
  color: rgba(66, 80, 92, 0.4);
}

.focus\:text-black-40:focus{
  color: rgba(33, 37, 41, 0.4);
}

.focus\:text-grey-darkest-40:focus{
  color: rgba(154, 165, 192, 0.4);
}

.focus\:text-grey-darker-40:focus{
  color: rgba(154, 165, 192, 0.4);
}

.focus\:text-grey-dark-40:focus{
  color: rgba(66, 80, 92, 0.4);
}

.focus\:text-grey-40:focus{
  color: rgba(121, 130, 139, 0.4);
}

.focus\:text-grey-light-40:focus{
  color: rgba(179, 188, 197, 0.4);
}

.focus\:text-grey-lighter-40:focus{
  color: rgba(222, 228, 233, 0.4);
}

.focus\:text-grey-lightest-40:focus{
  color: rgba(244, 246, 249, 0.4);
}

.focus\:text-white-40:focus{
  color: rgba(255, 255, 255, 0.4);
}

.focus\:text-red-40:focus{
  color: rgba(211, 26, 8, 0.4);
}

.focus\:text-green-40:focus{
  color: rgba(102, 187, 8, 0.4);
}

.focus\:text-blue-40:focus{
  color: rgba(31, 168, 226, 0.4);
}

.focus\:text-orange-40:focus{
  color: rgba(247, 148, 14, 0.4);
}

.focus\:text-primary-darkest-40:focus{
  color: rgba(83, 15, 18, 0.4);
}

.focus\:text-primary-darker-40:focus{
  color: rgba(124, 23, 27, 0.4);
}

.focus\:text-primary-dark-40:focus{
  color: rgba(166, 30, 36, 0.4);
}

.focus\:text-primary-40:focus{
  color: rgba(207, 38, 45, 0.4);
}

.focus\:text-primary-light-40:focus{
  color: rgba(217, 81, 87, 0.4);
}

.focus\:text-primary-lighter-40:focus{
  color: rgba(226, 125, 129, 0.4);
}

.focus\:text-primary-lightest-40:focus{
  color: rgba(236, 168, 171, 0.4);
}

.focus\:text-secondary-darkest-40:focus{
  color: rgba(62, 69, 37, 0.4);
}

.focus\:text-secondary-darker-40:focus{
  color: rgba(94, 104, 55, 0.4);
}

.focus\:text-secondary-dark-40:focus{
  color: rgba(125, 138, 74, 0.4);
}

.focus\:text-secondary-40:focus{
  color: rgba(156, 173, 92, 0.4);
}

.focus\:text-secondary-light-40:focus{
  color: rgba(176, 189, 125, 0.4);
}

.focus\:text-secondary-lighter-40:focus{
  color: rgba(196, 206, 157, 0.4);
}

.focus\:text-secondary-lightest-40:focus{
  color: rgba(215, 222, 190, 0.4);
}

.focus\:text-tertiary-darkest-40:focus{
  color: rgba(15, 47, 33, 0.4);
}

.focus\:text-tertiary-darker-40:focus{
  color: rgba(26, 71, 49, 0.4);
}

.focus\:text-tertiary-dark-40:focus{
  color: rgba(31, 157, 85, 0.4);
}

.focus\:text-tertiary-40:focus{
  color: rgba(255, 197, 0, 0.4);
}

.focus\:text-tertiary-light-40:focus{
  color: rgba(81, 216, 138, 0.4);
}

.focus\:text-tertiary-lighter-40:focus{
  color: rgba(162, 245, 191, 0.4);
}

.focus\:text-tertiary-lightest-40:focus{
  color: rgba(227, 252, 236, 0.4);
}

.focus\:text-border-40:focus{
  color: rgba(230, 235, 245, 0.4);
}

.focus\:text-form-40:focus{
  color: rgba(121, 130, 139, 0.4);
}

.focus\:text-form-active-40:focus{
  color: rgba(66, 80, 92, 0.4);
}

.focus\:text-black-40:focus{
  color: rgba(33, 37, 41, 0.4);
}

.focus\:text-grey-darkest-40:focus{
  color: rgba(154, 165, 192, 0.4);
}

.focus\:text-grey-darker-40:focus{
  color: rgba(154, 165, 192, 0.4);
}

.focus\:text-grey-dark-40:focus{
  color: rgba(66, 80, 92, 0.4);
}

.focus\:text-grey-40:focus{
  color: rgba(121, 130, 139, 0.4);
}

.focus\:text-grey-light-40:focus{
  color: rgba(179, 188, 197, 0.4);
}

.focus\:text-grey-lighter-40:focus{
  color: rgba(222, 228, 233, 0.4);
}

.focus\:text-grey-lightest-40:focus{
  color: rgba(244, 246, 249, 0.4);
}

.focus\:text-white-40:focus{
  color: rgba(255, 255, 255, 0.4);
}

.focus\:text-red-40:focus{
  color: rgba(211, 26, 8, 0.4);
}

.focus\:text-green-40:focus{
  color: rgba(102, 187, 8, 0.4);
}

.focus\:text-blue-40:focus{
  color: rgba(31, 168, 226, 0.4);
}

.focus\:text-orange-40:focus{
  color: rgba(247, 148, 14, 0.4);
}

.focus\:text-primary-darkest-40:focus{
  color: rgba(83, 15, 18, 0.4);
}

.focus\:text-primary-darker-40:focus{
  color: rgba(124, 23, 27, 0.4);
}

.focus\:text-primary-dark-40:focus{
  color: rgba(166, 30, 36, 0.4);
}

.focus\:text-primary-40:focus{
  color: rgba(207, 38, 45, 0.4);
}

.focus\:text-primary-light-40:focus{
  color: rgba(217, 81, 87, 0.4);
}

.focus\:text-primary-lighter-40:focus{
  color: rgba(226, 125, 129, 0.4);
}

.focus\:text-primary-lightest-40:focus{
  color: rgba(236, 168, 171, 0.4);
}

.focus\:text-secondary-darkest-40:focus{
  color: rgba(62, 69, 37, 0.4);
}

.focus\:text-secondary-darker-40:focus{
  color: rgba(94, 104, 55, 0.4);
}

.focus\:text-secondary-dark-40:focus{
  color: rgba(125, 138, 74, 0.4);
}

.focus\:text-secondary-40:focus{
  color: rgba(156, 173, 92, 0.4);
}

.focus\:text-secondary-light-40:focus{
  color: rgba(176, 189, 125, 0.4);
}

.focus\:text-secondary-lighter-40:focus{
  color: rgba(196, 206, 157, 0.4);
}

.focus\:text-secondary-lightest-40:focus{
  color: rgba(215, 222, 190, 0.4);
}

.focus\:text-tertiary-darkest-40:focus{
  color: rgba(15, 47, 33, 0.4);
}

.focus\:text-tertiary-darker-40:focus{
  color: rgba(26, 71, 49, 0.4);
}

.focus\:text-tertiary-dark-40:focus{
  color: rgba(31, 157, 85, 0.4);
}

.focus\:text-tertiary-40:focus{
  color: rgba(255, 197, 0, 0.4);
}

.focus\:text-tertiary-light-40:focus{
  color: rgba(81, 216, 138, 0.4);
}

.focus\:text-tertiary-lighter-40:focus{
  color: rgba(162, 245, 191, 0.4);
}

.focus\:text-tertiary-lightest-40:focus{
  color: rgba(227, 252, 236, 0.4);
}

.group:hover .group-hover\:text-border-40{
  color: rgba(230, 235, 245, 0.4);
}

.group:hover .group-hover\:text-form-40{
  color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:text-form-active-40{
  color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:text-black-40{
  color: rgba(33, 37, 41, 0.4);
}

.group:hover .group-hover\:text-grey-darkest-40{
  color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:text-grey-darker-40{
  color: rgba(154, 165, 192, 0.4);
}

.group:hover .group-hover\:text-grey-dark-40{
  color: rgba(66, 80, 92, 0.4);
}

.group:hover .group-hover\:text-grey-40{
  color: rgba(121, 130, 139, 0.4);
}

.group:hover .group-hover\:text-grey-light-40{
  color: rgba(179, 188, 197, 0.4);
}

.group:hover .group-hover\:text-grey-lighter-40{
  color: rgba(222, 228, 233, 0.4);
}

.group:hover .group-hover\:text-grey-lightest-40{
  color: rgba(244, 246, 249, 0.4);
}

.group:hover .group-hover\:text-white-40{
  color: rgba(255, 255, 255, 0.4);
}

.group:hover .group-hover\:text-red-40{
  color: rgba(211, 26, 8, 0.4);
}

.group:hover .group-hover\:text-green-40{
  color: rgba(102, 187, 8, 0.4);
}

.group:hover .group-hover\:text-blue-40{
  color: rgba(31, 168, 226, 0.4);
}

.group:hover .group-hover\:text-orange-40{
  color: rgba(247, 148, 14, 0.4);
}

.group:hover .group-hover\:text-primary-darkest-40{
  color: rgba(83, 15, 18, 0.4);
}

.group:hover .group-hover\:text-primary-darker-40{
  color: rgba(124, 23, 27, 0.4);
}

.group:hover .group-hover\:text-primary-dark-40{
  color: rgba(166, 30, 36, 0.4);
}

.group:hover .group-hover\:text-primary-40{
  color: rgba(207, 38, 45, 0.4);
}

.group:hover .group-hover\:text-primary-light-40{
  color: rgba(217, 81, 87, 0.4);
}

.group:hover .group-hover\:text-primary-lighter-40{
  color: rgba(226, 125, 129, 0.4);
}

.group:hover .group-hover\:text-primary-lightest-40{
  color: rgba(236, 168, 171, 0.4);
}

.group:hover .group-hover\:text-secondary-darkest-40{
  color: rgba(62, 69, 37, 0.4);
}

.group:hover .group-hover\:text-secondary-darker-40{
  color: rgba(94, 104, 55, 0.4);
}

.group:hover .group-hover\:text-secondary-dark-40{
  color: rgba(125, 138, 74, 0.4);
}

.group:hover .group-hover\:text-secondary-40{
  color: rgba(156, 173, 92, 0.4);
}

.group:hover .group-hover\:text-secondary-light-40{
  color: rgba(176, 189, 125, 0.4);
}

.group:hover .group-hover\:text-secondary-lighter-40{
  color: rgba(196, 206, 157, 0.4);
}

.group:hover .group-hover\:text-secondary-lightest-40{
  color: rgba(215, 222, 190, 0.4);
}

.group:hover .group-hover\:text-tertiary-darkest-40{
  color: rgba(15, 47, 33, 0.4);
}

.group:hover .group-hover\:text-tertiary-darker-40{
  color: rgba(26, 71, 49, 0.4);
}

.group:hover .group-hover\:text-tertiary-dark-40{
  color: rgba(31, 157, 85, 0.4);
}

.group:hover .group-hover\:text-tertiary-40{
  color: rgba(255, 197, 0, 0.4);
}

.group:hover .group-hover\:text-tertiary-light-40{
  color: rgba(81, 216, 138, 0.4);
}

.group:hover .group-hover\:text-tertiary-lighter-40{
  color: rgba(162, 245, 191, 0.4);
}

.group:hover .group-hover\:text-tertiary-lightest-40{
  color: rgba(227, 252, 236, 0.4);
}

.bg-border-50{
  background-color: rgba(230, 235, 245, 0.5);
}

.bg-form-50{
  background-color: rgba(121, 130, 139, 0.5);
}

.bg-form-active-50{
  background-color: rgba(66, 80, 92, 0.5);
}

.bg-black-50{
  background-color: rgba(33, 37, 41, 0.5);
}

.bg-grey-darkest-50{
  background-color: rgba(154, 165, 192, 0.5);
}

.bg-grey-darker-50{
  background-color: rgba(154, 165, 192, 0.5);
}

.bg-grey-dark-50{
  background-color: rgba(66, 80, 92, 0.5);
}

.bg-grey-50{
  background-color: rgba(121, 130, 139, 0.5);
}

.bg-grey-light-50{
  background-color: rgba(179, 188, 197, 0.5);
}

.bg-grey-lighter-50{
  background-color: rgba(222, 228, 233, 0.5);
}

.bg-grey-lightest-50{
  background-color: rgba(244, 246, 249, 0.5);
}

.bg-white-50{
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-red-50{
  background-color: rgba(211, 26, 8, 0.5);
}

.bg-green-50{
  background-color: rgba(102, 187, 8, 0.5);
}

.bg-blue-50{
  background-color: rgba(31, 168, 226, 0.5);
}

.bg-orange-50{
  background-color: rgba(247, 148, 14, 0.5);
}

.bg-primary-darkest-50{
  background-color: rgba(83, 15, 18, 0.5);
}

.bg-primary-darker-50{
  background-color: rgba(124, 23, 27, 0.5);
}

.bg-primary-dark-50{
  background-color: rgba(166, 30, 36, 0.5);
}

.bg-primary-50{
  background-color: rgba(207, 38, 45, 0.5);
}

.bg-primary-light-50{
  background-color: rgba(217, 81, 87, 0.5);
}

.bg-primary-lighter-50{
  background-color: rgba(226, 125, 129, 0.5);
}

.bg-primary-lightest-50{
  background-color: rgba(236, 168, 171, 0.5);
}

.bg-secondary-darkest-50{
  background-color: rgba(62, 69, 37, 0.5);
}

.bg-secondary-darker-50{
  background-color: rgba(94, 104, 55, 0.5);
}

.bg-secondary-dark-50{
  background-color: rgba(125, 138, 74, 0.5);
}

.bg-secondary-50{
  background-color: rgba(156, 173, 92, 0.5);
}

.bg-secondary-light-50{
  background-color: rgba(176, 189, 125, 0.5);
}

.bg-secondary-lighter-50{
  background-color: rgba(196, 206, 157, 0.5);
}

.bg-secondary-lightest-50{
  background-color: rgba(215, 222, 190, 0.5);
}

.bg-tertiary-darkest-50{
  background-color: rgba(15, 47, 33, 0.5);
}

.bg-tertiary-darker-50{
  background-color: rgba(26, 71, 49, 0.5);
}

.bg-tertiary-dark-50{
  background-color: rgba(31, 157, 85, 0.5);
}

.bg-tertiary-50{
  background-color: rgba(255, 197, 0, 0.5);
}

.bg-tertiary-light-50{
  background-color: rgba(81, 216, 138, 0.5);
}

.bg-tertiary-lighter-50{
  background-color: rgba(162, 245, 191, 0.5);
}

.bg-tertiary-lightest-50{
  background-color: rgba(227, 252, 236, 0.5);
}

.hover\:bg-border-50:hover{
  background-color: rgba(230, 235, 245, 0.5);
}

.hover\:bg-form-50:hover{
  background-color: rgba(121, 130, 139, 0.5);
}

.hover\:bg-form-active-50:hover{
  background-color: rgba(66, 80, 92, 0.5);
}

.hover\:bg-black-50:hover{
  background-color: rgba(33, 37, 41, 0.5);
}

.hover\:bg-grey-darkest-50:hover{
  background-color: rgba(154, 165, 192, 0.5);
}

.hover\:bg-grey-darker-50:hover{
  background-color: rgba(154, 165, 192, 0.5);
}

.hover\:bg-grey-dark-50:hover{
  background-color: rgba(66, 80, 92, 0.5);
}

.hover\:bg-grey-50:hover{
  background-color: rgba(121, 130, 139, 0.5);
}

.hover\:bg-grey-light-50:hover{
  background-color: rgba(179, 188, 197, 0.5);
}

.hover\:bg-grey-lighter-50:hover{
  background-color: rgba(222, 228, 233, 0.5);
}

.hover\:bg-grey-lightest-50:hover{
  background-color: rgba(244, 246, 249, 0.5);
}

.hover\:bg-white-50:hover{
  background-color: rgba(255, 255, 255, 0.5);
}

.hover\:bg-red-50:hover{
  background-color: rgba(211, 26, 8, 0.5);
}

.hover\:bg-green-50:hover{
  background-color: rgba(102, 187, 8, 0.5);
}

.hover\:bg-blue-50:hover{
  background-color: rgba(31, 168, 226, 0.5);
}

.hover\:bg-orange-50:hover{
  background-color: rgba(247, 148, 14, 0.5);
}

.hover\:bg-primary-darkest-50:hover{
  background-color: rgba(83, 15, 18, 0.5);
}

.hover\:bg-primary-darker-50:hover{
  background-color: rgba(124, 23, 27, 0.5);
}

.hover\:bg-primary-dark-50:hover{
  background-color: rgba(166, 30, 36, 0.5);
}

.hover\:bg-primary-50:hover{
  background-color: rgba(207, 38, 45, 0.5);
}

.hover\:bg-primary-light-50:hover{
  background-color: rgba(217, 81, 87, 0.5);
}

.hover\:bg-primary-lighter-50:hover{
  background-color: rgba(226, 125, 129, 0.5);
}

.hover\:bg-primary-lightest-50:hover{
  background-color: rgba(236, 168, 171, 0.5);
}

.hover\:bg-secondary-darkest-50:hover{
  background-color: rgba(62, 69, 37, 0.5);
}

.hover\:bg-secondary-darker-50:hover{
  background-color: rgba(94, 104, 55, 0.5);
}

.hover\:bg-secondary-dark-50:hover{
  background-color: rgba(125, 138, 74, 0.5);
}

.hover\:bg-secondary-50:hover{
  background-color: rgba(156, 173, 92, 0.5);
}

.hover\:bg-secondary-light-50:hover{
  background-color: rgba(176, 189, 125, 0.5);
}

.hover\:bg-secondary-lighter-50:hover{
  background-color: rgba(196, 206, 157, 0.5);
}

.hover\:bg-secondary-lightest-50:hover{
  background-color: rgba(215, 222, 190, 0.5);
}

.hover\:bg-tertiary-darkest-50:hover{
  background-color: rgba(15, 47, 33, 0.5);
}

.hover\:bg-tertiary-darker-50:hover{
  background-color: rgba(26, 71, 49, 0.5);
}

.hover\:bg-tertiary-dark-50:hover{
  background-color: rgba(31, 157, 85, 0.5);
}

.hover\:bg-tertiary-50:hover{
  background-color: rgba(255, 197, 0, 0.5);
}

.hover\:bg-tertiary-light-50:hover{
  background-color: rgba(81, 216, 138, 0.5);
}

.hover\:bg-tertiary-lighter-50:hover{
  background-color: rgba(162, 245, 191, 0.5);
}

.hover\:bg-tertiary-lightest-50:hover{
  background-color: rgba(227, 252, 236, 0.5);
}

.focus\:bg-border-50:focus{
  background-color: rgba(230, 235, 245, 0.5);
}

.focus\:bg-form-50:focus{
  background-color: rgba(121, 130, 139, 0.5);
}

.focus\:bg-form-active-50:focus{
  background-color: rgba(66, 80, 92, 0.5);
}

.focus\:bg-black-50:focus{
  background-color: rgba(33, 37, 41, 0.5);
}

.focus\:bg-grey-darkest-50:focus{
  background-color: rgba(154, 165, 192, 0.5);
}

.focus\:bg-grey-darker-50:focus{
  background-color: rgba(154, 165, 192, 0.5);
}

.focus\:bg-grey-dark-50:focus{
  background-color: rgba(66, 80, 92, 0.5);
}

.focus\:bg-grey-50:focus{
  background-color: rgba(121, 130, 139, 0.5);
}

.focus\:bg-grey-light-50:focus{
  background-color: rgba(179, 188, 197, 0.5);
}

.focus\:bg-grey-lighter-50:focus{
  background-color: rgba(222, 228, 233, 0.5);
}

.focus\:bg-grey-lightest-50:focus{
  background-color: rgba(244, 246, 249, 0.5);
}

.focus\:bg-white-50:focus{
  background-color: rgba(255, 255, 255, 0.5);
}

.focus\:bg-red-50:focus{
  background-color: rgba(211, 26, 8, 0.5);
}

.focus\:bg-green-50:focus{
  background-color: rgba(102, 187, 8, 0.5);
}

.focus\:bg-blue-50:focus{
  background-color: rgba(31, 168, 226, 0.5);
}

.focus\:bg-orange-50:focus{
  background-color: rgba(247, 148, 14, 0.5);
}

.focus\:bg-primary-darkest-50:focus{
  background-color: rgba(83, 15, 18, 0.5);
}

.focus\:bg-primary-darker-50:focus{
  background-color: rgba(124, 23, 27, 0.5);
}

.focus\:bg-primary-dark-50:focus{
  background-color: rgba(166, 30, 36, 0.5);
}

.focus\:bg-primary-50:focus{
  background-color: rgba(207, 38, 45, 0.5);
}

.focus\:bg-primary-light-50:focus{
  background-color: rgba(217, 81, 87, 0.5);
}

.focus\:bg-primary-lighter-50:focus{
  background-color: rgba(226, 125, 129, 0.5);
}

.focus\:bg-primary-lightest-50:focus{
  background-color: rgba(236, 168, 171, 0.5);
}

.focus\:bg-secondary-darkest-50:focus{
  background-color: rgba(62, 69, 37, 0.5);
}

.focus\:bg-secondary-darker-50:focus{
  background-color: rgba(94, 104, 55, 0.5);
}

.focus\:bg-secondary-dark-50:focus{
  background-color: rgba(125, 138, 74, 0.5);
}

.focus\:bg-secondary-50:focus{
  background-color: rgba(156, 173, 92, 0.5);
}

.focus\:bg-secondary-light-50:focus{
  background-color: rgba(176, 189, 125, 0.5);
}

.focus\:bg-secondary-lighter-50:focus{
  background-color: rgba(196, 206, 157, 0.5);
}

.focus\:bg-secondary-lightest-50:focus{
  background-color: rgba(215, 222, 190, 0.5);
}

.focus\:bg-tertiary-darkest-50:focus{
  background-color: rgba(15, 47, 33, 0.5);
}

.focus\:bg-tertiary-darker-50:focus{
  background-color: rgba(26, 71, 49, 0.5);
}

.focus\:bg-tertiary-dark-50:focus{
  background-color: rgba(31, 157, 85, 0.5);
}

.focus\:bg-tertiary-50:focus{
  background-color: rgba(255, 197, 0, 0.5);
}

.focus\:bg-tertiary-light-50:focus{
  background-color: rgba(81, 216, 138, 0.5);
}

.focus\:bg-tertiary-lighter-50:focus{
  background-color: rgba(162, 245, 191, 0.5);
}

.focus\:bg-tertiary-lightest-50:focus{
  background-color: rgba(227, 252, 236, 0.5);
}

.focus\:bg-border-50:focus{
  background-color: rgba(230, 235, 245, 0.5);
}

.focus\:bg-form-50:focus{
  background-color: rgba(121, 130, 139, 0.5);
}

.focus\:bg-form-active-50:focus{
  background-color: rgba(66, 80, 92, 0.5);
}

.focus\:bg-black-50:focus{
  background-color: rgba(33, 37, 41, 0.5);
}

.focus\:bg-grey-darkest-50:focus{
  background-color: rgba(154, 165, 192, 0.5);
}

.focus\:bg-grey-darker-50:focus{
  background-color: rgba(154, 165, 192, 0.5);
}

.focus\:bg-grey-dark-50:focus{
  background-color: rgba(66, 80, 92, 0.5);
}

.focus\:bg-grey-50:focus{
  background-color: rgba(121, 130, 139, 0.5);
}

.focus\:bg-grey-light-50:focus{
  background-color: rgba(179, 188, 197, 0.5);
}

.focus\:bg-grey-lighter-50:focus{
  background-color: rgba(222, 228, 233, 0.5);
}

.focus\:bg-grey-lightest-50:focus{
  background-color: rgba(244, 246, 249, 0.5);
}

.focus\:bg-white-50:focus{
  background-color: rgba(255, 255, 255, 0.5);
}

.focus\:bg-red-50:focus{
  background-color: rgba(211, 26, 8, 0.5);
}

.focus\:bg-green-50:focus{
  background-color: rgba(102, 187, 8, 0.5);
}

.focus\:bg-blue-50:focus{
  background-color: rgba(31, 168, 226, 0.5);
}

.focus\:bg-orange-50:focus{
  background-color: rgba(247, 148, 14, 0.5);
}

.focus\:bg-primary-darkest-50:focus{
  background-color: rgba(83, 15, 18, 0.5);
}

.focus\:bg-primary-darker-50:focus{
  background-color: rgba(124, 23, 27, 0.5);
}

.focus\:bg-primary-dark-50:focus{
  background-color: rgba(166, 30, 36, 0.5);
}

.focus\:bg-primary-50:focus{
  background-color: rgba(207, 38, 45, 0.5);
}

.focus\:bg-primary-light-50:focus{
  background-color: rgba(217, 81, 87, 0.5);
}

.focus\:bg-primary-lighter-50:focus{
  background-color: rgba(226, 125, 129, 0.5);
}

.focus\:bg-primary-lightest-50:focus{
  background-color: rgba(236, 168, 171, 0.5);
}

.focus\:bg-secondary-darkest-50:focus{
  background-color: rgba(62, 69, 37, 0.5);
}

.focus\:bg-secondary-darker-50:focus{
  background-color: rgba(94, 104, 55, 0.5);
}

.focus\:bg-secondary-dark-50:focus{
  background-color: rgba(125, 138, 74, 0.5);
}

.focus\:bg-secondary-50:focus{
  background-color: rgba(156, 173, 92, 0.5);
}

.focus\:bg-secondary-light-50:focus{
  background-color: rgba(176, 189, 125, 0.5);
}

.focus\:bg-secondary-lighter-50:focus{
  background-color: rgba(196, 206, 157, 0.5);
}

.focus\:bg-secondary-lightest-50:focus{
  background-color: rgba(215, 222, 190, 0.5);
}

.focus\:bg-tertiary-darkest-50:focus{
  background-color: rgba(15, 47, 33, 0.5);
}

.focus\:bg-tertiary-darker-50:focus{
  background-color: rgba(26, 71, 49, 0.5);
}

.focus\:bg-tertiary-dark-50:focus{
  background-color: rgba(31, 157, 85, 0.5);
}

.focus\:bg-tertiary-50:focus{
  background-color: rgba(255, 197, 0, 0.5);
}

.focus\:bg-tertiary-light-50:focus{
  background-color: rgba(81, 216, 138, 0.5);
}

.focus\:bg-tertiary-lighter-50:focus{
  background-color: rgba(162, 245, 191, 0.5);
}

.focus\:bg-tertiary-lightest-50:focus{
  background-color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:bg-border-50{
  background-color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:bg-form-50{
  background-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:bg-form-active-50{
  background-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:bg-black-50{
  background-color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:bg-grey-darkest-50{
  background-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:bg-grey-darker-50{
  background-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:bg-grey-dark-50{
  background-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:bg-grey-50{
  background-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:bg-grey-light-50{
  background-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:bg-grey-lighter-50{
  background-color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:bg-grey-lightest-50{
  background-color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:bg-white-50{
  background-color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:bg-red-50{
  background-color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:bg-green-50{
  background-color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:bg-blue-50{
  background-color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:bg-orange-50{
  background-color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:bg-primary-darkest-50{
  background-color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:bg-primary-darker-50{
  background-color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:bg-primary-dark-50{
  background-color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:bg-primary-50{
  background-color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:bg-primary-light-50{
  background-color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:bg-primary-lighter-50{
  background-color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:bg-primary-lightest-50{
  background-color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:bg-secondary-darkest-50{
  background-color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:bg-secondary-darker-50{
  background-color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:bg-secondary-dark-50{
  background-color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:bg-secondary-50{
  background-color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:bg-secondary-light-50{
  background-color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:bg-secondary-lighter-50{
  background-color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:bg-secondary-lightest-50{
  background-color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:bg-tertiary-darkest-50{
  background-color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:bg-tertiary-darker-50{
  background-color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:bg-tertiary-dark-50{
  background-color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:bg-tertiary-50{
  background-color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:bg-tertiary-light-50{
  background-color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:bg-tertiary-lighter-50{
  background-color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:bg-tertiary-lightest-50{
  background-color: rgba(227, 252, 236, 0.5);
}

.border-border-50{
  border-color: rgba(230, 235, 245, 0.5);
}

.border-t-border-50{
  border-top-color: rgba(230, 235, 245, 0.5);
}

.border-r-border-50{
  border-right-color: rgba(230, 235, 245, 0.5);
}

.border-b-border-50{
  border-bottom-color: rgba(230, 235, 245, 0.5);
}

.border-l-border-50{
  border-left-color: rgba(230, 235, 245, 0.5);
}

.border-form-50{
  border-color: rgba(121, 130, 139, 0.5);
}

.border-t-form-50{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.border-r-form-50{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.border-b-form-50{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.border-l-form-50{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.border-form-active-50{
  border-color: rgba(66, 80, 92, 0.5);
}

.border-t-form-active-50{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.border-r-form-active-50{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.border-b-form-active-50{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.border-l-form-active-50{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.border-black-50{
  border-color: rgba(33, 37, 41, 0.5);
}

.border-t-black-50{
  border-top-color: rgba(33, 37, 41, 0.5);
}

.border-r-black-50{
  border-right-color: rgba(33, 37, 41, 0.5);
}

.border-b-black-50{
  border-bottom-color: rgba(33, 37, 41, 0.5);
}

.border-l-black-50{
  border-left-color: rgba(33, 37, 41, 0.5);
}

.border-grey-darkest-50{
  border-color: rgba(154, 165, 192, 0.5);
}

.border-t-grey-darkest-50{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.border-r-grey-darkest-50{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.border-b-grey-darkest-50{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.border-l-grey-darkest-50{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.border-grey-darker-50{
  border-color: rgba(154, 165, 192, 0.5);
}

.border-t-grey-darker-50{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.border-r-grey-darker-50{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.border-b-grey-darker-50{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.border-l-grey-darker-50{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.border-grey-dark-50{
  border-color: rgba(66, 80, 92, 0.5);
}

.border-t-grey-dark-50{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.border-r-grey-dark-50{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.border-b-grey-dark-50{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.border-l-grey-dark-50{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.border-grey-50{
  border-color: rgba(121, 130, 139, 0.5);
}

.border-t-grey-50{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.border-r-grey-50{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.border-b-grey-50{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.border-l-grey-50{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.border-grey-light-50{
  border-color: rgba(179, 188, 197, 0.5);
}

.border-t-grey-light-50{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.border-r-grey-light-50{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.border-b-grey-light-50{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.border-l-grey-light-50{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.border-grey-lighter-50{
  border-color: rgba(222, 228, 233, 0.5);
}

.border-t-grey-lighter-50{
  border-top-color: rgba(222, 228, 233, 0.5);
}

.border-r-grey-lighter-50{
  border-right-color: rgba(222, 228, 233, 0.5);
}

.border-b-grey-lighter-50{
  border-bottom-color: rgba(222, 228, 233, 0.5);
}

.border-l-grey-lighter-50{
  border-left-color: rgba(222, 228, 233, 0.5);
}

.border-grey-lightest-50{
  border-color: rgba(244, 246, 249, 0.5);
}

.border-t-grey-lightest-50{
  border-top-color: rgba(244, 246, 249, 0.5);
}

.border-r-grey-lightest-50{
  border-right-color: rgba(244, 246, 249, 0.5);
}

.border-b-grey-lightest-50{
  border-bottom-color: rgba(244, 246, 249, 0.5);
}

.border-l-grey-lightest-50{
  border-left-color: rgba(244, 246, 249, 0.5);
}

.border-white-50{
  border-color: rgba(255, 255, 255, 0.5);
}

.border-t-white-50{
  border-top-color: rgba(255, 255, 255, 0.5);
}

.border-r-white-50{
  border-right-color: rgba(255, 255, 255, 0.5);
}

.border-b-white-50{
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.border-l-white-50{
  border-left-color: rgba(255, 255, 255, 0.5);
}

.border-red-50{
  border-color: rgba(211, 26, 8, 0.5);
}

.border-t-red-50{
  border-top-color: rgba(211, 26, 8, 0.5);
}

.border-r-red-50{
  border-right-color: rgba(211, 26, 8, 0.5);
}

.border-b-red-50{
  border-bottom-color: rgba(211, 26, 8, 0.5);
}

.border-l-red-50{
  border-left-color: rgba(211, 26, 8, 0.5);
}

.border-green-50{
  border-color: rgba(102, 187, 8, 0.5);
}

.border-t-green-50{
  border-top-color: rgba(102, 187, 8, 0.5);
}

.border-r-green-50{
  border-right-color: rgba(102, 187, 8, 0.5);
}

.border-b-green-50{
  border-bottom-color: rgba(102, 187, 8, 0.5);
}

.border-l-green-50{
  border-left-color: rgba(102, 187, 8, 0.5);
}

.border-blue-50{
  border-color: rgba(31, 168, 226, 0.5);
}

.border-t-blue-50{
  border-top-color: rgba(31, 168, 226, 0.5);
}

.border-r-blue-50{
  border-right-color: rgba(31, 168, 226, 0.5);
}

.border-b-blue-50{
  border-bottom-color: rgba(31, 168, 226, 0.5);
}

.border-l-blue-50{
  border-left-color: rgba(31, 168, 226, 0.5);
}

.border-orange-50{
  border-color: rgba(247, 148, 14, 0.5);
}

.border-t-orange-50{
  border-top-color: rgba(247, 148, 14, 0.5);
}

.border-r-orange-50{
  border-right-color: rgba(247, 148, 14, 0.5);
}

.border-b-orange-50{
  border-bottom-color: rgba(247, 148, 14, 0.5);
}

.border-l-orange-50{
  border-left-color: rgba(247, 148, 14, 0.5);
}

.border-primary-darkest-50{
  border-color: rgba(83, 15, 18, 0.5);
}

.border-t-primary-darkest-50{
  border-top-color: rgba(83, 15, 18, 0.5);
}

.border-r-primary-darkest-50{
  border-right-color: rgba(83, 15, 18, 0.5);
}

.border-b-primary-darkest-50{
  border-bottom-color: rgba(83, 15, 18, 0.5);
}

.border-l-primary-darkest-50{
  border-left-color: rgba(83, 15, 18, 0.5);
}

.border-primary-darker-50{
  border-color: rgba(124, 23, 27, 0.5);
}

.border-t-primary-darker-50{
  border-top-color: rgba(124, 23, 27, 0.5);
}

.border-r-primary-darker-50{
  border-right-color: rgba(124, 23, 27, 0.5);
}

.border-b-primary-darker-50{
  border-bottom-color: rgba(124, 23, 27, 0.5);
}

.border-l-primary-darker-50{
  border-left-color: rgba(124, 23, 27, 0.5);
}

.border-primary-dark-50{
  border-color: rgba(166, 30, 36, 0.5);
}

.border-t-primary-dark-50{
  border-top-color: rgba(166, 30, 36, 0.5);
}

.border-r-primary-dark-50{
  border-right-color: rgba(166, 30, 36, 0.5);
}

.border-b-primary-dark-50{
  border-bottom-color: rgba(166, 30, 36, 0.5);
}

.border-l-primary-dark-50{
  border-left-color: rgba(166, 30, 36, 0.5);
}

.border-primary-50{
  border-color: rgba(207, 38, 45, 0.5);
}

.border-t-primary-50{
  border-top-color: rgba(207, 38, 45, 0.5);
}

.border-r-primary-50{
  border-right-color: rgba(207, 38, 45, 0.5);
}

.border-b-primary-50{
  border-bottom-color: rgba(207, 38, 45, 0.5);
}

.border-l-primary-50{
  border-left-color: rgba(207, 38, 45, 0.5);
}

.border-primary-light-50{
  border-color: rgba(217, 81, 87, 0.5);
}

.border-t-primary-light-50{
  border-top-color: rgba(217, 81, 87, 0.5);
}

.border-r-primary-light-50{
  border-right-color: rgba(217, 81, 87, 0.5);
}

.border-b-primary-light-50{
  border-bottom-color: rgba(217, 81, 87, 0.5);
}

.border-l-primary-light-50{
  border-left-color: rgba(217, 81, 87, 0.5);
}

.border-primary-lighter-50{
  border-color: rgba(226, 125, 129, 0.5);
}

.border-t-primary-lighter-50{
  border-top-color: rgba(226, 125, 129, 0.5);
}

.border-r-primary-lighter-50{
  border-right-color: rgba(226, 125, 129, 0.5);
}

.border-b-primary-lighter-50{
  border-bottom-color: rgba(226, 125, 129, 0.5);
}

.border-l-primary-lighter-50{
  border-left-color: rgba(226, 125, 129, 0.5);
}

.border-primary-lightest-50{
  border-color: rgba(236, 168, 171, 0.5);
}

.border-t-primary-lightest-50{
  border-top-color: rgba(236, 168, 171, 0.5);
}

.border-r-primary-lightest-50{
  border-right-color: rgba(236, 168, 171, 0.5);
}

.border-b-primary-lightest-50{
  border-bottom-color: rgba(236, 168, 171, 0.5);
}

.border-l-primary-lightest-50{
  border-left-color: rgba(236, 168, 171, 0.5);
}

.border-secondary-darkest-50{
  border-color: rgba(62, 69, 37, 0.5);
}

.border-t-secondary-darkest-50{
  border-top-color: rgba(62, 69, 37, 0.5);
}

.border-r-secondary-darkest-50{
  border-right-color: rgba(62, 69, 37, 0.5);
}

.border-b-secondary-darkest-50{
  border-bottom-color: rgba(62, 69, 37, 0.5);
}

.border-l-secondary-darkest-50{
  border-left-color: rgba(62, 69, 37, 0.5);
}

.border-secondary-darker-50{
  border-color: rgba(94, 104, 55, 0.5);
}

.border-t-secondary-darker-50{
  border-top-color: rgba(94, 104, 55, 0.5);
}

.border-r-secondary-darker-50{
  border-right-color: rgba(94, 104, 55, 0.5);
}

.border-b-secondary-darker-50{
  border-bottom-color: rgba(94, 104, 55, 0.5);
}

.border-l-secondary-darker-50{
  border-left-color: rgba(94, 104, 55, 0.5);
}

.border-secondary-dark-50{
  border-color: rgba(125, 138, 74, 0.5);
}

.border-t-secondary-dark-50{
  border-top-color: rgba(125, 138, 74, 0.5);
}

.border-r-secondary-dark-50{
  border-right-color: rgba(125, 138, 74, 0.5);
}

.border-b-secondary-dark-50{
  border-bottom-color: rgba(125, 138, 74, 0.5);
}

.border-l-secondary-dark-50{
  border-left-color: rgba(125, 138, 74, 0.5);
}

.border-secondary-50{
  border-color: rgba(156, 173, 92, 0.5);
}

.border-t-secondary-50{
  border-top-color: rgba(156, 173, 92, 0.5);
}

.border-r-secondary-50{
  border-right-color: rgba(156, 173, 92, 0.5);
}

.border-b-secondary-50{
  border-bottom-color: rgba(156, 173, 92, 0.5);
}

.border-l-secondary-50{
  border-left-color: rgba(156, 173, 92, 0.5);
}

.border-secondary-light-50{
  border-color: rgba(176, 189, 125, 0.5);
}

.border-t-secondary-light-50{
  border-top-color: rgba(176, 189, 125, 0.5);
}

.border-r-secondary-light-50{
  border-right-color: rgba(176, 189, 125, 0.5);
}

.border-b-secondary-light-50{
  border-bottom-color: rgba(176, 189, 125, 0.5);
}

.border-l-secondary-light-50{
  border-left-color: rgba(176, 189, 125, 0.5);
}

.border-secondary-lighter-50{
  border-color: rgba(196, 206, 157, 0.5);
}

.border-t-secondary-lighter-50{
  border-top-color: rgba(196, 206, 157, 0.5);
}

.border-r-secondary-lighter-50{
  border-right-color: rgba(196, 206, 157, 0.5);
}

.border-b-secondary-lighter-50{
  border-bottom-color: rgba(196, 206, 157, 0.5);
}

.border-l-secondary-lighter-50{
  border-left-color: rgba(196, 206, 157, 0.5);
}

.border-secondary-lightest-50{
  border-color: rgba(215, 222, 190, 0.5);
}

.border-t-secondary-lightest-50{
  border-top-color: rgba(215, 222, 190, 0.5);
}

.border-r-secondary-lightest-50{
  border-right-color: rgba(215, 222, 190, 0.5);
}

.border-b-secondary-lightest-50{
  border-bottom-color: rgba(215, 222, 190, 0.5);
}

.border-l-secondary-lightest-50{
  border-left-color: rgba(215, 222, 190, 0.5);
}

.border-tertiary-darkest-50{
  border-color: rgba(15, 47, 33, 0.5);
}

.border-t-tertiary-darkest-50{
  border-top-color: rgba(15, 47, 33, 0.5);
}

.border-r-tertiary-darkest-50{
  border-right-color: rgba(15, 47, 33, 0.5);
}

.border-b-tertiary-darkest-50{
  border-bottom-color: rgba(15, 47, 33, 0.5);
}

.border-l-tertiary-darkest-50{
  border-left-color: rgba(15, 47, 33, 0.5);
}

.border-tertiary-darker-50{
  border-color: rgba(26, 71, 49, 0.5);
}

.border-t-tertiary-darker-50{
  border-top-color: rgba(26, 71, 49, 0.5);
}

.border-r-tertiary-darker-50{
  border-right-color: rgba(26, 71, 49, 0.5);
}

.border-b-tertiary-darker-50{
  border-bottom-color: rgba(26, 71, 49, 0.5);
}

.border-l-tertiary-darker-50{
  border-left-color: rgba(26, 71, 49, 0.5);
}

.border-tertiary-dark-50{
  border-color: rgba(31, 157, 85, 0.5);
}

.border-t-tertiary-dark-50{
  border-top-color: rgba(31, 157, 85, 0.5);
}

.border-r-tertiary-dark-50{
  border-right-color: rgba(31, 157, 85, 0.5);
}

.border-b-tertiary-dark-50{
  border-bottom-color: rgba(31, 157, 85, 0.5);
}

.border-l-tertiary-dark-50{
  border-left-color: rgba(31, 157, 85, 0.5);
}

.border-tertiary-50{
  border-color: rgba(255, 197, 0, 0.5);
}

.border-t-tertiary-50{
  border-top-color: rgba(255, 197, 0, 0.5);
}

.border-r-tertiary-50{
  border-right-color: rgba(255, 197, 0, 0.5);
}

.border-b-tertiary-50{
  border-bottom-color: rgba(255, 197, 0, 0.5);
}

.border-l-tertiary-50{
  border-left-color: rgba(255, 197, 0, 0.5);
}

.border-tertiary-light-50{
  border-color: rgba(81, 216, 138, 0.5);
}

.border-t-tertiary-light-50{
  border-top-color: rgba(81, 216, 138, 0.5);
}

.border-r-tertiary-light-50{
  border-right-color: rgba(81, 216, 138, 0.5);
}

.border-b-tertiary-light-50{
  border-bottom-color: rgba(81, 216, 138, 0.5);
}

.border-l-tertiary-light-50{
  border-left-color: rgba(81, 216, 138, 0.5);
}

.border-tertiary-lighter-50{
  border-color: rgba(162, 245, 191, 0.5);
}

.border-t-tertiary-lighter-50{
  border-top-color: rgba(162, 245, 191, 0.5);
}

.border-r-tertiary-lighter-50{
  border-right-color: rgba(162, 245, 191, 0.5);
}

.border-b-tertiary-lighter-50{
  border-bottom-color: rgba(162, 245, 191, 0.5);
}

.border-l-tertiary-lighter-50{
  border-left-color: rgba(162, 245, 191, 0.5);
}

.border-tertiary-lightest-50{
  border-color: rgba(227, 252, 236, 0.5);
}

.border-t-tertiary-lightest-50{
  border-top-color: rgba(227, 252, 236, 0.5);
}

.border-r-tertiary-lightest-50{
  border-right-color: rgba(227, 252, 236, 0.5);
}

.border-b-tertiary-lightest-50{
  border-bottom-color: rgba(227, 252, 236, 0.5);
}

.border-l-tertiary-lightest-50{
  border-left-color: rgba(227, 252, 236, 0.5);
}

.border-default-50{
  border-color: rgba(179, 188, 197, 0.5);
}

.border-t-default-50{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.border-r-default-50{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.border-b-default-50{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.border-l-default-50{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-border-50:hover{
  border-color: rgba(230, 235, 245, 0.5);
}

.hover\:border-t-border-50:hover{
  border-top-color: rgba(230, 235, 245, 0.5);
}

.hover\:border-r-border-50:hover{
  border-right-color: rgba(230, 235, 245, 0.5);
}

.hover\:border-b-border-50:hover{
  border-bottom-color: rgba(230, 235, 245, 0.5);
}

.hover\:border-l-border-50:hover{
  border-left-color: rgba(230, 235, 245, 0.5);
}

.hover\:border-form-50:hover{
  border-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-t-form-50:hover{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-r-form-50:hover{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-b-form-50:hover{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-l-form-50:hover{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-form-active-50:hover{
  border-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-t-form-active-50:hover{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-r-form-active-50:hover{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-b-form-active-50:hover{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-l-form-active-50:hover{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-black-50:hover{
  border-color: rgba(33, 37, 41, 0.5);
}

.hover\:border-t-black-50:hover{
  border-top-color: rgba(33, 37, 41, 0.5);
}

.hover\:border-r-black-50:hover{
  border-right-color: rgba(33, 37, 41, 0.5);
}

.hover\:border-b-black-50:hover{
  border-bottom-color: rgba(33, 37, 41, 0.5);
}

.hover\:border-l-black-50:hover{
  border-left-color: rgba(33, 37, 41, 0.5);
}

.hover\:border-grey-darkest-50:hover{
  border-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-t-grey-darkest-50:hover{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-r-grey-darkest-50:hover{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-b-grey-darkest-50:hover{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-l-grey-darkest-50:hover{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-grey-darker-50:hover{
  border-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-t-grey-darker-50:hover{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-r-grey-darker-50:hover{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-b-grey-darker-50:hover{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-l-grey-darker-50:hover{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.hover\:border-grey-dark-50:hover{
  border-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-t-grey-dark-50:hover{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-r-grey-dark-50:hover{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-b-grey-dark-50:hover{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-l-grey-dark-50:hover{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.hover\:border-grey-50:hover{
  border-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-t-grey-50:hover{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-r-grey-50:hover{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-b-grey-50:hover{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-l-grey-50:hover{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.hover\:border-grey-light-50:hover{
  border-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-t-grey-light-50:hover{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-r-grey-light-50:hover{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-b-grey-light-50:hover{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-l-grey-light-50:hover{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-grey-lighter-50:hover{
  border-color: rgba(222, 228, 233, 0.5);
}

.hover\:border-t-grey-lighter-50:hover{
  border-top-color: rgba(222, 228, 233, 0.5);
}

.hover\:border-r-grey-lighter-50:hover{
  border-right-color: rgba(222, 228, 233, 0.5);
}

.hover\:border-b-grey-lighter-50:hover{
  border-bottom-color: rgba(222, 228, 233, 0.5);
}

.hover\:border-l-grey-lighter-50:hover{
  border-left-color: rgba(222, 228, 233, 0.5);
}

.hover\:border-grey-lightest-50:hover{
  border-color: rgba(244, 246, 249, 0.5);
}

.hover\:border-t-grey-lightest-50:hover{
  border-top-color: rgba(244, 246, 249, 0.5);
}

.hover\:border-r-grey-lightest-50:hover{
  border-right-color: rgba(244, 246, 249, 0.5);
}

.hover\:border-b-grey-lightest-50:hover{
  border-bottom-color: rgba(244, 246, 249, 0.5);
}

.hover\:border-l-grey-lightest-50:hover{
  border-left-color: rgba(244, 246, 249, 0.5);
}

.hover\:border-white-50:hover{
  border-color: rgba(255, 255, 255, 0.5);
}

.hover\:border-t-white-50:hover{
  border-top-color: rgba(255, 255, 255, 0.5);
}

.hover\:border-r-white-50:hover{
  border-right-color: rgba(255, 255, 255, 0.5);
}

.hover\:border-b-white-50:hover{
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.hover\:border-l-white-50:hover{
  border-left-color: rgba(255, 255, 255, 0.5);
}

.hover\:border-red-50:hover{
  border-color: rgba(211, 26, 8, 0.5);
}

.hover\:border-t-red-50:hover{
  border-top-color: rgba(211, 26, 8, 0.5);
}

.hover\:border-r-red-50:hover{
  border-right-color: rgba(211, 26, 8, 0.5);
}

.hover\:border-b-red-50:hover{
  border-bottom-color: rgba(211, 26, 8, 0.5);
}

.hover\:border-l-red-50:hover{
  border-left-color: rgba(211, 26, 8, 0.5);
}

.hover\:border-green-50:hover{
  border-color: rgba(102, 187, 8, 0.5);
}

.hover\:border-t-green-50:hover{
  border-top-color: rgba(102, 187, 8, 0.5);
}

.hover\:border-r-green-50:hover{
  border-right-color: rgba(102, 187, 8, 0.5);
}

.hover\:border-b-green-50:hover{
  border-bottom-color: rgba(102, 187, 8, 0.5);
}

.hover\:border-l-green-50:hover{
  border-left-color: rgba(102, 187, 8, 0.5);
}

.hover\:border-blue-50:hover{
  border-color: rgba(31, 168, 226, 0.5);
}

.hover\:border-t-blue-50:hover{
  border-top-color: rgba(31, 168, 226, 0.5);
}

.hover\:border-r-blue-50:hover{
  border-right-color: rgba(31, 168, 226, 0.5);
}

.hover\:border-b-blue-50:hover{
  border-bottom-color: rgba(31, 168, 226, 0.5);
}

.hover\:border-l-blue-50:hover{
  border-left-color: rgba(31, 168, 226, 0.5);
}

.hover\:border-orange-50:hover{
  border-color: rgba(247, 148, 14, 0.5);
}

.hover\:border-t-orange-50:hover{
  border-top-color: rgba(247, 148, 14, 0.5);
}

.hover\:border-r-orange-50:hover{
  border-right-color: rgba(247, 148, 14, 0.5);
}

.hover\:border-b-orange-50:hover{
  border-bottom-color: rgba(247, 148, 14, 0.5);
}

.hover\:border-l-orange-50:hover{
  border-left-color: rgba(247, 148, 14, 0.5);
}

.hover\:border-primary-darkest-50:hover{
  border-color: rgba(83, 15, 18, 0.5);
}

.hover\:border-t-primary-darkest-50:hover{
  border-top-color: rgba(83, 15, 18, 0.5);
}

.hover\:border-r-primary-darkest-50:hover{
  border-right-color: rgba(83, 15, 18, 0.5);
}

.hover\:border-b-primary-darkest-50:hover{
  border-bottom-color: rgba(83, 15, 18, 0.5);
}

.hover\:border-l-primary-darkest-50:hover{
  border-left-color: rgba(83, 15, 18, 0.5);
}

.hover\:border-primary-darker-50:hover{
  border-color: rgba(124, 23, 27, 0.5);
}

.hover\:border-t-primary-darker-50:hover{
  border-top-color: rgba(124, 23, 27, 0.5);
}

.hover\:border-r-primary-darker-50:hover{
  border-right-color: rgba(124, 23, 27, 0.5);
}

.hover\:border-b-primary-darker-50:hover{
  border-bottom-color: rgba(124, 23, 27, 0.5);
}

.hover\:border-l-primary-darker-50:hover{
  border-left-color: rgba(124, 23, 27, 0.5);
}

.hover\:border-primary-dark-50:hover{
  border-color: rgba(166, 30, 36, 0.5);
}

.hover\:border-t-primary-dark-50:hover{
  border-top-color: rgba(166, 30, 36, 0.5);
}

.hover\:border-r-primary-dark-50:hover{
  border-right-color: rgba(166, 30, 36, 0.5);
}

.hover\:border-b-primary-dark-50:hover{
  border-bottom-color: rgba(166, 30, 36, 0.5);
}

.hover\:border-l-primary-dark-50:hover{
  border-left-color: rgba(166, 30, 36, 0.5);
}

.hover\:border-primary-50:hover{
  border-color: rgba(207, 38, 45, 0.5);
}

.hover\:border-t-primary-50:hover{
  border-top-color: rgba(207, 38, 45, 0.5);
}

.hover\:border-r-primary-50:hover{
  border-right-color: rgba(207, 38, 45, 0.5);
}

.hover\:border-b-primary-50:hover{
  border-bottom-color: rgba(207, 38, 45, 0.5);
}

.hover\:border-l-primary-50:hover{
  border-left-color: rgba(207, 38, 45, 0.5);
}

.hover\:border-primary-light-50:hover{
  border-color: rgba(217, 81, 87, 0.5);
}

.hover\:border-t-primary-light-50:hover{
  border-top-color: rgba(217, 81, 87, 0.5);
}

.hover\:border-r-primary-light-50:hover{
  border-right-color: rgba(217, 81, 87, 0.5);
}

.hover\:border-b-primary-light-50:hover{
  border-bottom-color: rgba(217, 81, 87, 0.5);
}

.hover\:border-l-primary-light-50:hover{
  border-left-color: rgba(217, 81, 87, 0.5);
}

.hover\:border-primary-lighter-50:hover{
  border-color: rgba(226, 125, 129, 0.5);
}

.hover\:border-t-primary-lighter-50:hover{
  border-top-color: rgba(226, 125, 129, 0.5);
}

.hover\:border-r-primary-lighter-50:hover{
  border-right-color: rgba(226, 125, 129, 0.5);
}

.hover\:border-b-primary-lighter-50:hover{
  border-bottom-color: rgba(226, 125, 129, 0.5);
}

.hover\:border-l-primary-lighter-50:hover{
  border-left-color: rgba(226, 125, 129, 0.5);
}

.hover\:border-primary-lightest-50:hover{
  border-color: rgba(236, 168, 171, 0.5);
}

.hover\:border-t-primary-lightest-50:hover{
  border-top-color: rgba(236, 168, 171, 0.5);
}

.hover\:border-r-primary-lightest-50:hover{
  border-right-color: rgba(236, 168, 171, 0.5);
}

.hover\:border-b-primary-lightest-50:hover{
  border-bottom-color: rgba(236, 168, 171, 0.5);
}

.hover\:border-l-primary-lightest-50:hover{
  border-left-color: rgba(236, 168, 171, 0.5);
}

.hover\:border-secondary-darkest-50:hover{
  border-color: rgba(62, 69, 37, 0.5);
}

.hover\:border-t-secondary-darkest-50:hover{
  border-top-color: rgba(62, 69, 37, 0.5);
}

.hover\:border-r-secondary-darkest-50:hover{
  border-right-color: rgba(62, 69, 37, 0.5);
}

.hover\:border-b-secondary-darkest-50:hover{
  border-bottom-color: rgba(62, 69, 37, 0.5);
}

.hover\:border-l-secondary-darkest-50:hover{
  border-left-color: rgba(62, 69, 37, 0.5);
}

.hover\:border-secondary-darker-50:hover{
  border-color: rgba(94, 104, 55, 0.5);
}

.hover\:border-t-secondary-darker-50:hover{
  border-top-color: rgba(94, 104, 55, 0.5);
}

.hover\:border-r-secondary-darker-50:hover{
  border-right-color: rgba(94, 104, 55, 0.5);
}

.hover\:border-b-secondary-darker-50:hover{
  border-bottom-color: rgba(94, 104, 55, 0.5);
}

.hover\:border-l-secondary-darker-50:hover{
  border-left-color: rgba(94, 104, 55, 0.5);
}

.hover\:border-secondary-dark-50:hover{
  border-color: rgba(125, 138, 74, 0.5);
}

.hover\:border-t-secondary-dark-50:hover{
  border-top-color: rgba(125, 138, 74, 0.5);
}

.hover\:border-r-secondary-dark-50:hover{
  border-right-color: rgba(125, 138, 74, 0.5);
}

.hover\:border-b-secondary-dark-50:hover{
  border-bottom-color: rgba(125, 138, 74, 0.5);
}

.hover\:border-l-secondary-dark-50:hover{
  border-left-color: rgba(125, 138, 74, 0.5);
}

.hover\:border-secondary-50:hover{
  border-color: rgba(156, 173, 92, 0.5);
}

.hover\:border-t-secondary-50:hover{
  border-top-color: rgba(156, 173, 92, 0.5);
}

.hover\:border-r-secondary-50:hover{
  border-right-color: rgba(156, 173, 92, 0.5);
}

.hover\:border-b-secondary-50:hover{
  border-bottom-color: rgba(156, 173, 92, 0.5);
}

.hover\:border-l-secondary-50:hover{
  border-left-color: rgba(156, 173, 92, 0.5);
}

.hover\:border-secondary-light-50:hover{
  border-color: rgba(176, 189, 125, 0.5);
}

.hover\:border-t-secondary-light-50:hover{
  border-top-color: rgba(176, 189, 125, 0.5);
}

.hover\:border-r-secondary-light-50:hover{
  border-right-color: rgba(176, 189, 125, 0.5);
}

.hover\:border-b-secondary-light-50:hover{
  border-bottom-color: rgba(176, 189, 125, 0.5);
}

.hover\:border-l-secondary-light-50:hover{
  border-left-color: rgba(176, 189, 125, 0.5);
}

.hover\:border-secondary-lighter-50:hover{
  border-color: rgba(196, 206, 157, 0.5);
}

.hover\:border-t-secondary-lighter-50:hover{
  border-top-color: rgba(196, 206, 157, 0.5);
}

.hover\:border-r-secondary-lighter-50:hover{
  border-right-color: rgba(196, 206, 157, 0.5);
}

.hover\:border-b-secondary-lighter-50:hover{
  border-bottom-color: rgba(196, 206, 157, 0.5);
}

.hover\:border-l-secondary-lighter-50:hover{
  border-left-color: rgba(196, 206, 157, 0.5);
}

.hover\:border-secondary-lightest-50:hover{
  border-color: rgba(215, 222, 190, 0.5);
}

.hover\:border-t-secondary-lightest-50:hover{
  border-top-color: rgba(215, 222, 190, 0.5);
}

.hover\:border-r-secondary-lightest-50:hover{
  border-right-color: rgba(215, 222, 190, 0.5);
}

.hover\:border-b-secondary-lightest-50:hover{
  border-bottom-color: rgba(215, 222, 190, 0.5);
}

.hover\:border-l-secondary-lightest-50:hover{
  border-left-color: rgba(215, 222, 190, 0.5);
}

.hover\:border-tertiary-darkest-50:hover{
  border-color: rgba(15, 47, 33, 0.5);
}

.hover\:border-t-tertiary-darkest-50:hover{
  border-top-color: rgba(15, 47, 33, 0.5);
}

.hover\:border-r-tertiary-darkest-50:hover{
  border-right-color: rgba(15, 47, 33, 0.5);
}

.hover\:border-b-tertiary-darkest-50:hover{
  border-bottom-color: rgba(15, 47, 33, 0.5);
}

.hover\:border-l-tertiary-darkest-50:hover{
  border-left-color: rgba(15, 47, 33, 0.5);
}

.hover\:border-tertiary-darker-50:hover{
  border-color: rgba(26, 71, 49, 0.5);
}

.hover\:border-t-tertiary-darker-50:hover{
  border-top-color: rgba(26, 71, 49, 0.5);
}

.hover\:border-r-tertiary-darker-50:hover{
  border-right-color: rgba(26, 71, 49, 0.5);
}

.hover\:border-b-tertiary-darker-50:hover{
  border-bottom-color: rgba(26, 71, 49, 0.5);
}

.hover\:border-l-tertiary-darker-50:hover{
  border-left-color: rgba(26, 71, 49, 0.5);
}

.hover\:border-tertiary-dark-50:hover{
  border-color: rgba(31, 157, 85, 0.5);
}

.hover\:border-t-tertiary-dark-50:hover{
  border-top-color: rgba(31, 157, 85, 0.5);
}

.hover\:border-r-tertiary-dark-50:hover{
  border-right-color: rgba(31, 157, 85, 0.5);
}

.hover\:border-b-tertiary-dark-50:hover{
  border-bottom-color: rgba(31, 157, 85, 0.5);
}

.hover\:border-l-tertiary-dark-50:hover{
  border-left-color: rgba(31, 157, 85, 0.5);
}

.hover\:border-tertiary-50:hover{
  border-color: rgba(255, 197, 0, 0.5);
}

.hover\:border-t-tertiary-50:hover{
  border-top-color: rgba(255, 197, 0, 0.5);
}

.hover\:border-r-tertiary-50:hover{
  border-right-color: rgba(255, 197, 0, 0.5);
}

.hover\:border-b-tertiary-50:hover{
  border-bottom-color: rgba(255, 197, 0, 0.5);
}

.hover\:border-l-tertiary-50:hover{
  border-left-color: rgba(255, 197, 0, 0.5);
}

.hover\:border-tertiary-light-50:hover{
  border-color: rgba(81, 216, 138, 0.5);
}

.hover\:border-t-tertiary-light-50:hover{
  border-top-color: rgba(81, 216, 138, 0.5);
}

.hover\:border-r-tertiary-light-50:hover{
  border-right-color: rgba(81, 216, 138, 0.5);
}

.hover\:border-b-tertiary-light-50:hover{
  border-bottom-color: rgba(81, 216, 138, 0.5);
}

.hover\:border-l-tertiary-light-50:hover{
  border-left-color: rgba(81, 216, 138, 0.5);
}

.hover\:border-tertiary-lighter-50:hover{
  border-color: rgba(162, 245, 191, 0.5);
}

.hover\:border-t-tertiary-lighter-50:hover{
  border-top-color: rgba(162, 245, 191, 0.5);
}

.hover\:border-r-tertiary-lighter-50:hover{
  border-right-color: rgba(162, 245, 191, 0.5);
}

.hover\:border-b-tertiary-lighter-50:hover{
  border-bottom-color: rgba(162, 245, 191, 0.5);
}

.hover\:border-l-tertiary-lighter-50:hover{
  border-left-color: rgba(162, 245, 191, 0.5);
}

.hover\:border-tertiary-lightest-50:hover{
  border-color: rgba(227, 252, 236, 0.5);
}

.hover\:border-t-tertiary-lightest-50:hover{
  border-top-color: rgba(227, 252, 236, 0.5);
}

.hover\:border-r-tertiary-lightest-50:hover{
  border-right-color: rgba(227, 252, 236, 0.5);
}

.hover\:border-b-tertiary-lightest-50:hover{
  border-bottom-color: rgba(227, 252, 236, 0.5);
}

.hover\:border-l-tertiary-lightest-50:hover{
  border-left-color: rgba(227, 252, 236, 0.5);
}

.hover\:border-default-50:hover{
  border-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-t-default-50:hover{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-r-default-50:hover{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-b-default-50:hover{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.hover\:border-l-default-50:hover{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-border-50:focus{
  border-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-t-border-50:focus{
  border-top-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-r-border-50:focus{
  border-right-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-b-border-50:focus{
  border-bottom-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-l-border-50:focus{
  border-left-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-form-50:focus{
  border-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-t-form-50:focus{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-r-form-50:focus{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-b-form-50:focus{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-l-form-50:focus{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-form-active-50:focus{
  border-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-t-form-active-50:focus{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-r-form-active-50:focus{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-b-form-active-50:focus{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-l-form-active-50:focus{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-black-50:focus{
  border-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-t-black-50:focus{
  border-top-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-r-black-50:focus{
  border-right-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-b-black-50:focus{
  border-bottom-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-l-black-50:focus{
  border-left-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-grey-darkest-50:focus{
  border-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-t-grey-darkest-50:focus{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-r-grey-darkest-50:focus{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-b-grey-darkest-50:focus{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-l-grey-darkest-50:focus{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-grey-darker-50:focus{
  border-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-t-grey-darker-50:focus{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-r-grey-darker-50:focus{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-b-grey-darker-50:focus{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-l-grey-darker-50:focus{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-grey-dark-50:focus{
  border-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-t-grey-dark-50:focus{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-r-grey-dark-50:focus{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-b-grey-dark-50:focus{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-l-grey-dark-50:focus{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-grey-50:focus{
  border-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-t-grey-50:focus{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-r-grey-50:focus{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-b-grey-50:focus{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-l-grey-50:focus{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-grey-light-50:focus{
  border-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-t-grey-light-50:focus{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-r-grey-light-50:focus{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-b-grey-light-50:focus{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-l-grey-light-50:focus{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-grey-lighter-50:focus{
  border-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-t-grey-lighter-50:focus{
  border-top-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-r-grey-lighter-50:focus{
  border-right-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-b-grey-lighter-50:focus{
  border-bottom-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-l-grey-lighter-50:focus{
  border-left-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-grey-lightest-50:focus{
  border-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-t-grey-lightest-50:focus{
  border-top-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-r-grey-lightest-50:focus{
  border-right-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-b-grey-lightest-50:focus{
  border-bottom-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-l-grey-lightest-50:focus{
  border-left-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-white-50:focus{
  border-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-t-white-50:focus{
  border-top-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-r-white-50:focus{
  border-right-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-b-white-50:focus{
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-l-white-50:focus{
  border-left-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-red-50:focus{
  border-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-t-red-50:focus{
  border-top-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-r-red-50:focus{
  border-right-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-b-red-50:focus{
  border-bottom-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-l-red-50:focus{
  border-left-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-green-50:focus{
  border-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-t-green-50:focus{
  border-top-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-r-green-50:focus{
  border-right-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-b-green-50:focus{
  border-bottom-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-l-green-50:focus{
  border-left-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-blue-50:focus{
  border-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-t-blue-50:focus{
  border-top-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-r-blue-50:focus{
  border-right-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-b-blue-50:focus{
  border-bottom-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-l-blue-50:focus{
  border-left-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-orange-50:focus{
  border-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-t-orange-50:focus{
  border-top-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-r-orange-50:focus{
  border-right-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-b-orange-50:focus{
  border-bottom-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-l-orange-50:focus{
  border-left-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-primary-darkest-50:focus{
  border-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-t-primary-darkest-50:focus{
  border-top-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-r-primary-darkest-50:focus{
  border-right-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-b-primary-darkest-50:focus{
  border-bottom-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-l-primary-darkest-50:focus{
  border-left-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-primary-darker-50:focus{
  border-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-t-primary-darker-50:focus{
  border-top-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-r-primary-darker-50:focus{
  border-right-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-b-primary-darker-50:focus{
  border-bottom-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-l-primary-darker-50:focus{
  border-left-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-primary-dark-50:focus{
  border-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-t-primary-dark-50:focus{
  border-top-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-r-primary-dark-50:focus{
  border-right-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-b-primary-dark-50:focus{
  border-bottom-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-l-primary-dark-50:focus{
  border-left-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-primary-50:focus{
  border-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-t-primary-50:focus{
  border-top-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-r-primary-50:focus{
  border-right-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-b-primary-50:focus{
  border-bottom-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-l-primary-50:focus{
  border-left-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-primary-light-50:focus{
  border-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-t-primary-light-50:focus{
  border-top-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-r-primary-light-50:focus{
  border-right-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-b-primary-light-50:focus{
  border-bottom-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-l-primary-light-50:focus{
  border-left-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-primary-lighter-50:focus{
  border-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-t-primary-lighter-50:focus{
  border-top-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-r-primary-lighter-50:focus{
  border-right-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-b-primary-lighter-50:focus{
  border-bottom-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-l-primary-lighter-50:focus{
  border-left-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-primary-lightest-50:focus{
  border-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-t-primary-lightest-50:focus{
  border-top-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-r-primary-lightest-50:focus{
  border-right-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-b-primary-lightest-50:focus{
  border-bottom-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-l-primary-lightest-50:focus{
  border-left-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-secondary-darkest-50:focus{
  border-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-t-secondary-darkest-50:focus{
  border-top-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-r-secondary-darkest-50:focus{
  border-right-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-b-secondary-darkest-50:focus{
  border-bottom-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-l-secondary-darkest-50:focus{
  border-left-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-secondary-darker-50:focus{
  border-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-t-secondary-darker-50:focus{
  border-top-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-r-secondary-darker-50:focus{
  border-right-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-b-secondary-darker-50:focus{
  border-bottom-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-l-secondary-darker-50:focus{
  border-left-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-secondary-dark-50:focus{
  border-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-t-secondary-dark-50:focus{
  border-top-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-r-secondary-dark-50:focus{
  border-right-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-b-secondary-dark-50:focus{
  border-bottom-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-l-secondary-dark-50:focus{
  border-left-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-secondary-50:focus{
  border-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-t-secondary-50:focus{
  border-top-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-r-secondary-50:focus{
  border-right-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-b-secondary-50:focus{
  border-bottom-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-l-secondary-50:focus{
  border-left-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-secondary-light-50:focus{
  border-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-t-secondary-light-50:focus{
  border-top-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-r-secondary-light-50:focus{
  border-right-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-b-secondary-light-50:focus{
  border-bottom-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-l-secondary-light-50:focus{
  border-left-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-secondary-lighter-50:focus{
  border-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-t-secondary-lighter-50:focus{
  border-top-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-r-secondary-lighter-50:focus{
  border-right-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-b-secondary-lighter-50:focus{
  border-bottom-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-l-secondary-lighter-50:focus{
  border-left-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-secondary-lightest-50:focus{
  border-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-t-secondary-lightest-50:focus{
  border-top-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-r-secondary-lightest-50:focus{
  border-right-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-b-secondary-lightest-50:focus{
  border-bottom-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-l-secondary-lightest-50:focus{
  border-left-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-tertiary-darkest-50:focus{
  border-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-t-tertiary-darkest-50:focus{
  border-top-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-r-tertiary-darkest-50:focus{
  border-right-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-b-tertiary-darkest-50:focus{
  border-bottom-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-l-tertiary-darkest-50:focus{
  border-left-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-tertiary-darker-50:focus{
  border-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-t-tertiary-darker-50:focus{
  border-top-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-r-tertiary-darker-50:focus{
  border-right-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-b-tertiary-darker-50:focus{
  border-bottom-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-l-tertiary-darker-50:focus{
  border-left-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-tertiary-dark-50:focus{
  border-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-t-tertiary-dark-50:focus{
  border-top-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-r-tertiary-dark-50:focus{
  border-right-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-b-tertiary-dark-50:focus{
  border-bottom-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-l-tertiary-dark-50:focus{
  border-left-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-tertiary-50:focus{
  border-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-t-tertiary-50:focus{
  border-top-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-r-tertiary-50:focus{
  border-right-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-b-tertiary-50:focus{
  border-bottom-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-l-tertiary-50:focus{
  border-left-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-tertiary-light-50:focus{
  border-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-t-tertiary-light-50:focus{
  border-top-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-r-tertiary-light-50:focus{
  border-right-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-b-tertiary-light-50:focus{
  border-bottom-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-l-tertiary-light-50:focus{
  border-left-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-tertiary-lighter-50:focus{
  border-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-t-tertiary-lighter-50:focus{
  border-top-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-r-tertiary-lighter-50:focus{
  border-right-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-b-tertiary-lighter-50:focus{
  border-bottom-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-l-tertiary-lighter-50:focus{
  border-left-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-tertiary-lightest-50:focus{
  border-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-t-tertiary-lightest-50:focus{
  border-top-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-r-tertiary-lightest-50:focus{
  border-right-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-b-tertiary-lightest-50:focus{
  border-bottom-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-l-tertiary-lightest-50:focus{
  border-left-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-default-50:focus{
  border-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-t-default-50:focus{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-r-default-50:focus{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-b-default-50:focus{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-l-default-50:focus{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-border-50:focus{
  border-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-t-border-50:focus{
  border-top-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-r-border-50:focus{
  border-right-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-b-border-50:focus{
  border-bottom-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-l-border-50:focus{
  border-left-color: rgba(230, 235, 245, 0.5);
}

.focus\:border-form-50:focus{
  border-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-t-form-50:focus{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-r-form-50:focus{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-b-form-50:focus{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-l-form-50:focus{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-form-active-50:focus{
  border-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-t-form-active-50:focus{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-r-form-active-50:focus{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-b-form-active-50:focus{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-l-form-active-50:focus{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-black-50:focus{
  border-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-t-black-50:focus{
  border-top-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-r-black-50:focus{
  border-right-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-b-black-50:focus{
  border-bottom-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-l-black-50:focus{
  border-left-color: rgba(33, 37, 41, 0.5);
}

.focus\:border-grey-darkest-50:focus{
  border-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-t-grey-darkest-50:focus{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-r-grey-darkest-50:focus{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-b-grey-darkest-50:focus{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-l-grey-darkest-50:focus{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-grey-darker-50:focus{
  border-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-t-grey-darker-50:focus{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-r-grey-darker-50:focus{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-b-grey-darker-50:focus{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-l-grey-darker-50:focus{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.focus\:border-grey-dark-50:focus{
  border-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-t-grey-dark-50:focus{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-r-grey-dark-50:focus{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-b-grey-dark-50:focus{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-l-grey-dark-50:focus{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.focus\:border-grey-50:focus{
  border-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-t-grey-50:focus{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-r-grey-50:focus{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-b-grey-50:focus{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-l-grey-50:focus{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.focus\:border-grey-light-50:focus{
  border-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-t-grey-light-50:focus{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-r-grey-light-50:focus{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-b-grey-light-50:focus{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-l-grey-light-50:focus{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-grey-lighter-50:focus{
  border-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-t-grey-lighter-50:focus{
  border-top-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-r-grey-lighter-50:focus{
  border-right-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-b-grey-lighter-50:focus{
  border-bottom-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-l-grey-lighter-50:focus{
  border-left-color: rgba(222, 228, 233, 0.5);
}

.focus\:border-grey-lightest-50:focus{
  border-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-t-grey-lightest-50:focus{
  border-top-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-r-grey-lightest-50:focus{
  border-right-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-b-grey-lightest-50:focus{
  border-bottom-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-l-grey-lightest-50:focus{
  border-left-color: rgba(244, 246, 249, 0.5);
}

.focus\:border-white-50:focus{
  border-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-t-white-50:focus{
  border-top-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-r-white-50:focus{
  border-right-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-b-white-50:focus{
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-l-white-50:focus{
  border-left-color: rgba(255, 255, 255, 0.5);
}

.focus\:border-red-50:focus{
  border-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-t-red-50:focus{
  border-top-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-r-red-50:focus{
  border-right-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-b-red-50:focus{
  border-bottom-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-l-red-50:focus{
  border-left-color: rgba(211, 26, 8, 0.5);
}

.focus\:border-green-50:focus{
  border-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-t-green-50:focus{
  border-top-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-r-green-50:focus{
  border-right-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-b-green-50:focus{
  border-bottom-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-l-green-50:focus{
  border-left-color: rgba(102, 187, 8, 0.5);
}

.focus\:border-blue-50:focus{
  border-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-t-blue-50:focus{
  border-top-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-r-blue-50:focus{
  border-right-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-b-blue-50:focus{
  border-bottom-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-l-blue-50:focus{
  border-left-color: rgba(31, 168, 226, 0.5);
}

.focus\:border-orange-50:focus{
  border-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-t-orange-50:focus{
  border-top-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-r-orange-50:focus{
  border-right-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-b-orange-50:focus{
  border-bottom-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-l-orange-50:focus{
  border-left-color: rgba(247, 148, 14, 0.5);
}

.focus\:border-primary-darkest-50:focus{
  border-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-t-primary-darkest-50:focus{
  border-top-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-r-primary-darkest-50:focus{
  border-right-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-b-primary-darkest-50:focus{
  border-bottom-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-l-primary-darkest-50:focus{
  border-left-color: rgba(83, 15, 18, 0.5);
}

.focus\:border-primary-darker-50:focus{
  border-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-t-primary-darker-50:focus{
  border-top-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-r-primary-darker-50:focus{
  border-right-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-b-primary-darker-50:focus{
  border-bottom-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-l-primary-darker-50:focus{
  border-left-color: rgba(124, 23, 27, 0.5);
}

.focus\:border-primary-dark-50:focus{
  border-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-t-primary-dark-50:focus{
  border-top-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-r-primary-dark-50:focus{
  border-right-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-b-primary-dark-50:focus{
  border-bottom-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-l-primary-dark-50:focus{
  border-left-color: rgba(166, 30, 36, 0.5);
}

.focus\:border-primary-50:focus{
  border-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-t-primary-50:focus{
  border-top-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-r-primary-50:focus{
  border-right-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-b-primary-50:focus{
  border-bottom-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-l-primary-50:focus{
  border-left-color: rgba(207, 38, 45, 0.5);
}

.focus\:border-primary-light-50:focus{
  border-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-t-primary-light-50:focus{
  border-top-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-r-primary-light-50:focus{
  border-right-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-b-primary-light-50:focus{
  border-bottom-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-l-primary-light-50:focus{
  border-left-color: rgba(217, 81, 87, 0.5);
}

.focus\:border-primary-lighter-50:focus{
  border-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-t-primary-lighter-50:focus{
  border-top-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-r-primary-lighter-50:focus{
  border-right-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-b-primary-lighter-50:focus{
  border-bottom-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-l-primary-lighter-50:focus{
  border-left-color: rgba(226, 125, 129, 0.5);
}

.focus\:border-primary-lightest-50:focus{
  border-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-t-primary-lightest-50:focus{
  border-top-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-r-primary-lightest-50:focus{
  border-right-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-b-primary-lightest-50:focus{
  border-bottom-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-l-primary-lightest-50:focus{
  border-left-color: rgba(236, 168, 171, 0.5);
}

.focus\:border-secondary-darkest-50:focus{
  border-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-t-secondary-darkest-50:focus{
  border-top-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-r-secondary-darkest-50:focus{
  border-right-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-b-secondary-darkest-50:focus{
  border-bottom-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-l-secondary-darkest-50:focus{
  border-left-color: rgba(62, 69, 37, 0.5);
}

.focus\:border-secondary-darker-50:focus{
  border-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-t-secondary-darker-50:focus{
  border-top-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-r-secondary-darker-50:focus{
  border-right-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-b-secondary-darker-50:focus{
  border-bottom-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-l-secondary-darker-50:focus{
  border-left-color: rgba(94, 104, 55, 0.5);
}

.focus\:border-secondary-dark-50:focus{
  border-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-t-secondary-dark-50:focus{
  border-top-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-r-secondary-dark-50:focus{
  border-right-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-b-secondary-dark-50:focus{
  border-bottom-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-l-secondary-dark-50:focus{
  border-left-color: rgba(125, 138, 74, 0.5);
}

.focus\:border-secondary-50:focus{
  border-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-t-secondary-50:focus{
  border-top-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-r-secondary-50:focus{
  border-right-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-b-secondary-50:focus{
  border-bottom-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-l-secondary-50:focus{
  border-left-color: rgba(156, 173, 92, 0.5);
}

.focus\:border-secondary-light-50:focus{
  border-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-t-secondary-light-50:focus{
  border-top-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-r-secondary-light-50:focus{
  border-right-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-b-secondary-light-50:focus{
  border-bottom-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-l-secondary-light-50:focus{
  border-left-color: rgba(176, 189, 125, 0.5);
}

.focus\:border-secondary-lighter-50:focus{
  border-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-t-secondary-lighter-50:focus{
  border-top-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-r-secondary-lighter-50:focus{
  border-right-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-b-secondary-lighter-50:focus{
  border-bottom-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-l-secondary-lighter-50:focus{
  border-left-color: rgba(196, 206, 157, 0.5);
}

.focus\:border-secondary-lightest-50:focus{
  border-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-t-secondary-lightest-50:focus{
  border-top-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-r-secondary-lightest-50:focus{
  border-right-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-b-secondary-lightest-50:focus{
  border-bottom-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-l-secondary-lightest-50:focus{
  border-left-color: rgba(215, 222, 190, 0.5);
}

.focus\:border-tertiary-darkest-50:focus{
  border-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-t-tertiary-darkest-50:focus{
  border-top-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-r-tertiary-darkest-50:focus{
  border-right-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-b-tertiary-darkest-50:focus{
  border-bottom-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-l-tertiary-darkest-50:focus{
  border-left-color: rgba(15, 47, 33, 0.5);
}

.focus\:border-tertiary-darker-50:focus{
  border-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-t-tertiary-darker-50:focus{
  border-top-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-r-tertiary-darker-50:focus{
  border-right-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-b-tertiary-darker-50:focus{
  border-bottom-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-l-tertiary-darker-50:focus{
  border-left-color: rgba(26, 71, 49, 0.5);
}

.focus\:border-tertiary-dark-50:focus{
  border-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-t-tertiary-dark-50:focus{
  border-top-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-r-tertiary-dark-50:focus{
  border-right-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-b-tertiary-dark-50:focus{
  border-bottom-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-l-tertiary-dark-50:focus{
  border-left-color: rgba(31, 157, 85, 0.5);
}

.focus\:border-tertiary-50:focus{
  border-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-t-tertiary-50:focus{
  border-top-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-r-tertiary-50:focus{
  border-right-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-b-tertiary-50:focus{
  border-bottom-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-l-tertiary-50:focus{
  border-left-color: rgba(255, 197, 0, 0.5);
}

.focus\:border-tertiary-light-50:focus{
  border-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-t-tertiary-light-50:focus{
  border-top-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-r-tertiary-light-50:focus{
  border-right-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-b-tertiary-light-50:focus{
  border-bottom-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-l-tertiary-light-50:focus{
  border-left-color: rgba(81, 216, 138, 0.5);
}

.focus\:border-tertiary-lighter-50:focus{
  border-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-t-tertiary-lighter-50:focus{
  border-top-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-r-tertiary-lighter-50:focus{
  border-right-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-b-tertiary-lighter-50:focus{
  border-bottom-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-l-tertiary-lighter-50:focus{
  border-left-color: rgba(162, 245, 191, 0.5);
}

.focus\:border-tertiary-lightest-50:focus{
  border-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-t-tertiary-lightest-50:focus{
  border-top-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-r-tertiary-lightest-50:focus{
  border-right-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-b-tertiary-lightest-50:focus{
  border-bottom-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-l-tertiary-lightest-50:focus{
  border-left-color: rgba(227, 252, 236, 0.5);
}

.focus\:border-default-50:focus{
  border-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-t-default-50:focus{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-r-default-50:focus{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-b-default-50:focus{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.focus\:border-l-default-50:focus{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-border-50{
  border-color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:border-t-border-50{
  border-top-color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:border-r-border-50{
  border-right-color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:border-b-border-50{
  border-bottom-color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:border-l-border-50{
  border-left-color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:border-form-50{
  border-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-t-form-50{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-r-form-50{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-b-form-50{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-l-form-50{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-form-active-50{
  border-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-t-form-active-50{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-r-form-active-50{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-b-form-active-50{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-l-form-active-50{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-black-50{
  border-color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:border-t-black-50{
  border-top-color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:border-r-black-50{
  border-right-color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:border-b-black-50{
  border-bottom-color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:border-l-black-50{
  border-left-color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:border-grey-darkest-50{
  border-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-t-grey-darkest-50{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-r-grey-darkest-50{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-b-grey-darkest-50{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-l-grey-darkest-50{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-grey-darker-50{
  border-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-t-grey-darker-50{
  border-top-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-r-grey-darker-50{
  border-right-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-b-grey-darker-50{
  border-bottom-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-l-grey-darker-50{
  border-left-color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:border-grey-dark-50{
  border-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-t-grey-dark-50{
  border-top-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-r-grey-dark-50{
  border-right-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-b-grey-dark-50{
  border-bottom-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-l-grey-dark-50{
  border-left-color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:border-grey-50{
  border-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-t-grey-50{
  border-top-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-r-grey-50{
  border-right-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-b-grey-50{
  border-bottom-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-l-grey-50{
  border-left-color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:border-grey-light-50{
  border-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-t-grey-light-50{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-r-grey-light-50{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-b-grey-light-50{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-l-grey-light-50{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-grey-lighter-50{
  border-color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:border-t-grey-lighter-50{
  border-top-color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:border-r-grey-lighter-50{
  border-right-color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:border-b-grey-lighter-50{
  border-bottom-color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:border-l-grey-lighter-50{
  border-left-color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:border-grey-lightest-50{
  border-color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:border-t-grey-lightest-50{
  border-top-color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:border-r-grey-lightest-50{
  border-right-color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:border-b-grey-lightest-50{
  border-bottom-color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:border-l-grey-lightest-50{
  border-left-color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:border-white-50{
  border-color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:border-t-white-50{
  border-top-color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:border-r-white-50{
  border-right-color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:border-b-white-50{
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:border-l-white-50{
  border-left-color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:border-red-50{
  border-color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:border-t-red-50{
  border-top-color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:border-r-red-50{
  border-right-color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:border-b-red-50{
  border-bottom-color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:border-l-red-50{
  border-left-color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:border-green-50{
  border-color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:border-t-green-50{
  border-top-color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:border-r-green-50{
  border-right-color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:border-b-green-50{
  border-bottom-color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:border-l-green-50{
  border-left-color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:border-blue-50{
  border-color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:border-t-blue-50{
  border-top-color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:border-r-blue-50{
  border-right-color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:border-b-blue-50{
  border-bottom-color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:border-l-blue-50{
  border-left-color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:border-orange-50{
  border-color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:border-t-orange-50{
  border-top-color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:border-r-orange-50{
  border-right-color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:border-b-orange-50{
  border-bottom-color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:border-l-orange-50{
  border-left-color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:border-primary-darkest-50{
  border-color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:border-t-primary-darkest-50{
  border-top-color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:border-r-primary-darkest-50{
  border-right-color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:border-b-primary-darkest-50{
  border-bottom-color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:border-l-primary-darkest-50{
  border-left-color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:border-primary-darker-50{
  border-color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:border-t-primary-darker-50{
  border-top-color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:border-r-primary-darker-50{
  border-right-color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:border-b-primary-darker-50{
  border-bottom-color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:border-l-primary-darker-50{
  border-left-color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:border-primary-dark-50{
  border-color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:border-t-primary-dark-50{
  border-top-color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:border-r-primary-dark-50{
  border-right-color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:border-b-primary-dark-50{
  border-bottom-color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:border-l-primary-dark-50{
  border-left-color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:border-primary-50{
  border-color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:border-t-primary-50{
  border-top-color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:border-r-primary-50{
  border-right-color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:border-b-primary-50{
  border-bottom-color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:border-l-primary-50{
  border-left-color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:border-primary-light-50{
  border-color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:border-t-primary-light-50{
  border-top-color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:border-r-primary-light-50{
  border-right-color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:border-b-primary-light-50{
  border-bottom-color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:border-l-primary-light-50{
  border-left-color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:border-primary-lighter-50{
  border-color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:border-t-primary-lighter-50{
  border-top-color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:border-r-primary-lighter-50{
  border-right-color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:border-b-primary-lighter-50{
  border-bottom-color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:border-l-primary-lighter-50{
  border-left-color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:border-primary-lightest-50{
  border-color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:border-t-primary-lightest-50{
  border-top-color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:border-r-primary-lightest-50{
  border-right-color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:border-b-primary-lightest-50{
  border-bottom-color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:border-l-primary-lightest-50{
  border-left-color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:border-secondary-darkest-50{
  border-color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:border-t-secondary-darkest-50{
  border-top-color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:border-r-secondary-darkest-50{
  border-right-color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:border-b-secondary-darkest-50{
  border-bottom-color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:border-l-secondary-darkest-50{
  border-left-color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:border-secondary-darker-50{
  border-color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:border-t-secondary-darker-50{
  border-top-color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:border-r-secondary-darker-50{
  border-right-color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:border-b-secondary-darker-50{
  border-bottom-color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:border-l-secondary-darker-50{
  border-left-color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:border-secondary-dark-50{
  border-color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:border-t-secondary-dark-50{
  border-top-color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:border-r-secondary-dark-50{
  border-right-color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:border-b-secondary-dark-50{
  border-bottom-color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:border-l-secondary-dark-50{
  border-left-color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:border-secondary-50{
  border-color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:border-t-secondary-50{
  border-top-color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:border-r-secondary-50{
  border-right-color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:border-b-secondary-50{
  border-bottom-color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:border-l-secondary-50{
  border-left-color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:border-secondary-light-50{
  border-color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:border-t-secondary-light-50{
  border-top-color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:border-r-secondary-light-50{
  border-right-color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:border-b-secondary-light-50{
  border-bottom-color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:border-l-secondary-light-50{
  border-left-color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:border-secondary-lighter-50{
  border-color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:border-t-secondary-lighter-50{
  border-top-color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:border-r-secondary-lighter-50{
  border-right-color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:border-b-secondary-lighter-50{
  border-bottom-color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:border-l-secondary-lighter-50{
  border-left-color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:border-secondary-lightest-50{
  border-color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:border-t-secondary-lightest-50{
  border-top-color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:border-r-secondary-lightest-50{
  border-right-color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:border-b-secondary-lightest-50{
  border-bottom-color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:border-l-secondary-lightest-50{
  border-left-color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:border-tertiary-darkest-50{
  border-color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-darkest-50{
  border-top-color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-darkest-50{
  border-right-color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-darkest-50{
  border-bottom-color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-darkest-50{
  border-left-color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:border-tertiary-darker-50{
  border-color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-darker-50{
  border-top-color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-darker-50{
  border-right-color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-darker-50{
  border-bottom-color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-darker-50{
  border-left-color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:border-tertiary-dark-50{
  border-color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-dark-50{
  border-top-color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-dark-50{
  border-right-color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-dark-50{
  border-bottom-color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-dark-50{
  border-left-color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:border-tertiary-50{
  border-color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-50{
  border-top-color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-50{
  border-right-color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-50{
  border-bottom-color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-50{
  border-left-color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:border-tertiary-light-50{
  border-color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-light-50{
  border-top-color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-light-50{
  border-right-color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-light-50{
  border-bottom-color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-light-50{
  border-left-color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:border-tertiary-lighter-50{
  border-color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-lighter-50{
  border-top-color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-lighter-50{
  border-right-color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-lighter-50{
  border-bottom-color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-lighter-50{
  border-left-color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:border-tertiary-lightest-50{
  border-color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:border-t-tertiary-lightest-50{
  border-top-color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:border-r-tertiary-lightest-50{
  border-right-color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:border-b-tertiary-lightest-50{
  border-bottom-color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:border-l-tertiary-lightest-50{
  border-left-color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:border-default-50{
  border-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-t-default-50{
  border-top-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-r-default-50{
  border-right-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-b-default-50{
  border-bottom-color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:border-l-default-50{
  border-left-color: rgba(179, 188, 197, 0.5);
}

.text-border-50{
  color: rgba(230, 235, 245, 0.5);
}

.text-form-50{
  color: rgba(121, 130, 139, 0.5);
}

.text-form-active-50{
  color: rgba(66, 80, 92, 0.5);
}

.text-black-50{
  color: rgba(33, 37, 41, 0.5);
}

.text-grey-darkest-50{
  color: rgba(154, 165, 192, 0.5);
}

.text-grey-darker-50{
  color: rgba(154, 165, 192, 0.5);
}

.text-grey-dark-50{
  color: rgba(66, 80, 92, 0.5);
}

.text-grey-50{
  color: rgba(121, 130, 139, 0.5);
}

.text-grey-light-50{
  color: rgba(179, 188, 197, 0.5);
}

.text-grey-lighter-50{
  color: rgba(222, 228, 233, 0.5);
}

.text-grey-lightest-50{
  color: rgba(244, 246, 249, 0.5);
}

.text-white-50{
  color: rgba(255, 255, 255, 0.5);
}

.text-red-50{
  color: rgba(211, 26, 8, 0.5);
}

.text-green-50{
  color: rgba(102, 187, 8, 0.5);
}

.text-blue-50{
  color: rgba(31, 168, 226, 0.5);
}

.text-orange-50{
  color: rgba(247, 148, 14, 0.5);
}

.text-primary-darkest-50{
  color: rgba(83, 15, 18, 0.5);
}

.text-primary-darker-50{
  color: rgba(124, 23, 27, 0.5);
}

.text-primary-dark-50{
  color: rgba(166, 30, 36, 0.5);
}

.text-primary-50{
  color: rgba(207, 38, 45, 0.5);
}

.text-primary-light-50{
  color: rgba(217, 81, 87, 0.5);
}

.text-primary-lighter-50{
  color: rgba(226, 125, 129, 0.5);
}

.text-primary-lightest-50{
  color: rgba(236, 168, 171, 0.5);
}

.text-secondary-darkest-50{
  color: rgba(62, 69, 37, 0.5);
}

.text-secondary-darker-50{
  color: rgba(94, 104, 55, 0.5);
}

.text-secondary-dark-50{
  color: rgba(125, 138, 74, 0.5);
}

.text-secondary-50{
  color: rgba(156, 173, 92, 0.5);
}

.text-secondary-light-50{
  color: rgba(176, 189, 125, 0.5);
}

.text-secondary-lighter-50{
  color: rgba(196, 206, 157, 0.5);
}

.text-secondary-lightest-50{
  color: rgba(215, 222, 190, 0.5);
}

.text-tertiary-darkest-50{
  color: rgba(15, 47, 33, 0.5);
}

.text-tertiary-darker-50{
  color: rgba(26, 71, 49, 0.5);
}

.text-tertiary-dark-50{
  color: rgba(31, 157, 85, 0.5);
}

.text-tertiary-50{
  color: rgba(255, 197, 0, 0.5);
}

.text-tertiary-light-50{
  color: rgba(81, 216, 138, 0.5);
}

.text-tertiary-lighter-50{
  color: rgba(162, 245, 191, 0.5);
}

.text-tertiary-lightest-50{
  color: rgba(227, 252, 236, 0.5);
}

.hover\:text-border-50:hover{
  color: rgba(230, 235, 245, 0.5);
}

.hover\:text-form-50:hover{
  color: rgba(121, 130, 139, 0.5);
}

.hover\:text-form-active-50:hover{
  color: rgba(66, 80, 92, 0.5);
}

.hover\:text-black-50:hover{
  color: rgba(33, 37, 41, 0.5);
}

.hover\:text-grey-darkest-50:hover{
  color: rgba(154, 165, 192, 0.5);
}

.hover\:text-grey-darker-50:hover{
  color: rgba(154, 165, 192, 0.5);
}

.hover\:text-grey-dark-50:hover{
  color: rgba(66, 80, 92, 0.5);
}

.hover\:text-grey-50:hover{
  color: rgba(121, 130, 139, 0.5);
}

.hover\:text-grey-light-50:hover{
  color: rgba(179, 188, 197, 0.5);
}

.hover\:text-grey-lighter-50:hover{
  color: rgba(222, 228, 233, 0.5);
}

.hover\:text-grey-lightest-50:hover{
  color: rgba(244, 246, 249, 0.5);
}

.hover\:text-white-50:hover{
  color: rgba(255, 255, 255, 0.5);
}

.hover\:text-red-50:hover{
  color: rgba(211, 26, 8, 0.5);
}

.hover\:text-green-50:hover{
  color: rgba(102, 187, 8, 0.5);
}

.hover\:text-blue-50:hover{
  color: rgba(31, 168, 226, 0.5);
}

.hover\:text-orange-50:hover{
  color: rgba(247, 148, 14, 0.5);
}

.hover\:text-primary-darkest-50:hover{
  color: rgba(83, 15, 18, 0.5);
}

.hover\:text-primary-darker-50:hover{
  color: rgba(124, 23, 27, 0.5);
}

.hover\:text-primary-dark-50:hover{
  color: rgba(166, 30, 36, 0.5);
}

.hover\:text-primary-50:hover{
  color: rgba(207, 38, 45, 0.5);
}

.hover\:text-primary-light-50:hover{
  color: rgba(217, 81, 87, 0.5);
}

.hover\:text-primary-lighter-50:hover{
  color: rgba(226, 125, 129, 0.5);
}

.hover\:text-primary-lightest-50:hover{
  color: rgba(236, 168, 171, 0.5);
}

.hover\:text-secondary-darkest-50:hover{
  color: rgba(62, 69, 37, 0.5);
}

.hover\:text-secondary-darker-50:hover{
  color: rgba(94, 104, 55, 0.5);
}

.hover\:text-secondary-dark-50:hover{
  color: rgba(125, 138, 74, 0.5);
}

.hover\:text-secondary-50:hover{
  color: rgba(156, 173, 92, 0.5);
}

.hover\:text-secondary-light-50:hover{
  color: rgba(176, 189, 125, 0.5);
}

.hover\:text-secondary-lighter-50:hover{
  color: rgba(196, 206, 157, 0.5);
}

.hover\:text-secondary-lightest-50:hover{
  color: rgba(215, 222, 190, 0.5);
}

.hover\:text-tertiary-darkest-50:hover{
  color: rgba(15, 47, 33, 0.5);
}

.hover\:text-tertiary-darker-50:hover{
  color: rgba(26, 71, 49, 0.5);
}

.hover\:text-tertiary-dark-50:hover{
  color: rgba(31, 157, 85, 0.5);
}

.hover\:text-tertiary-50:hover{
  color: rgba(255, 197, 0, 0.5);
}

.hover\:text-tertiary-light-50:hover{
  color: rgba(81, 216, 138, 0.5);
}

.hover\:text-tertiary-lighter-50:hover{
  color: rgba(162, 245, 191, 0.5);
}

.hover\:text-tertiary-lightest-50:hover{
  color: rgba(227, 252, 236, 0.5);
}

.focus\:text-border-50:focus{
  color: rgba(230, 235, 245, 0.5);
}

.focus\:text-form-50:focus{
  color: rgba(121, 130, 139, 0.5);
}

.focus\:text-form-active-50:focus{
  color: rgba(66, 80, 92, 0.5);
}

.focus\:text-black-50:focus{
  color: rgba(33, 37, 41, 0.5);
}

.focus\:text-grey-darkest-50:focus{
  color: rgba(154, 165, 192, 0.5);
}

.focus\:text-grey-darker-50:focus{
  color: rgba(154, 165, 192, 0.5);
}

.focus\:text-grey-dark-50:focus{
  color: rgba(66, 80, 92, 0.5);
}

.focus\:text-grey-50:focus{
  color: rgba(121, 130, 139, 0.5);
}

.focus\:text-grey-light-50:focus{
  color: rgba(179, 188, 197, 0.5);
}

.focus\:text-grey-lighter-50:focus{
  color: rgba(222, 228, 233, 0.5);
}

.focus\:text-grey-lightest-50:focus{
  color: rgba(244, 246, 249, 0.5);
}

.focus\:text-white-50:focus{
  color: rgba(255, 255, 255, 0.5);
}

.focus\:text-red-50:focus{
  color: rgba(211, 26, 8, 0.5);
}

.focus\:text-green-50:focus{
  color: rgba(102, 187, 8, 0.5);
}

.focus\:text-blue-50:focus{
  color: rgba(31, 168, 226, 0.5);
}

.focus\:text-orange-50:focus{
  color: rgba(247, 148, 14, 0.5);
}

.focus\:text-primary-darkest-50:focus{
  color: rgba(83, 15, 18, 0.5);
}

.focus\:text-primary-darker-50:focus{
  color: rgba(124, 23, 27, 0.5);
}

.focus\:text-primary-dark-50:focus{
  color: rgba(166, 30, 36, 0.5);
}

.focus\:text-primary-50:focus{
  color: rgba(207, 38, 45, 0.5);
}

.focus\:text-primary-light-50:focus{
  color: rgba(217, 81, 87, 0.5);
}

.focus\:text-primary-lighter-50:focus{
  color: rgba(226, 125, 129, 0.5);
}

.focus\:text-primary-lightest-50:focus{
  color: rgba(236, 168, 171, 0.5);
}

.focus\:text-secondary-darkest-50:focus{
  color: rgba(62, 69, 37, 0.5);
}

.focus\:text-secondary-darker-50:focus{
  color: rgba(94, 104, 55, 0.5);
}

.focus\:text-secondary-dark-50:focus{
  color: rgba(125, 138, 74, 0.5);
}

.focus\:text-secondary-50:focus{
  color: rgba(156, 173, 92, 0.5);
}

.focus\:text-secondary-light-50:focus{
  color: rgba(176, 189, 125, 0.5);
}

.focus\:text-secondary-lighter-50:focus{
  color: rgba(196, 206, 157, 0.5);
}

.focus\:text-secondary-lightest-50:focus{
  color: rgba(215, 222, 190, 0.5);
}

.focus\:text-tertiary-darkest-50:focus{
  color: rgba(15, 47, 33, 0.5);
}

.focus\:text-tertiary-darker-50:focus{
  color: rgba(26, 71, 49, 0.5);
}

.focus\:text-tertiary-dark-50:focus{
  color: rgba(31, 157, 85, 0.5);
}

.focus\:text-tertiary-50:focus{
  color: rgba(255, 197, 0, 0.5);
}

.focus\:text-tertiary-light-50:focus{
  color: rgba(81, 216, 138, 0.5);
}

.focus\:text-tertiary-lighter-50:focus{
  color: rgba(162, 245, 191, 0.5);
}

.focus\:text-tertiary-lightest-50:focus{
  color: rgba(227, 252, 236, 0.5);
}

.focus\:text-border-50:focus{
  color: rgba(230, 235, 245, 0.5);
}

.focus\:text-form-50:focus{
  color: rgba(121, 130, 139, 0.5);
}

.focus\:text-form-active-50:focus{
  color: rgba(66, 80, 92, 0.5);
}

.focus\:text-black-50:focus{
  color: rgba(33, 37, 41, 0.5);
}

.focus\:text-grey-darkest-50:focus{
  color: rgba(154, 165, 192, 0.5);
}

.focus\:text-grey-darker-50:focus{
  color: rgba(154, 165, 192, 0.5);
}

.focus\:text-grey-dark-50:focus{
  color: rgba(66, 80, 92, 0.5);
}

.focus\:text-grey-50:focus{
  color: rgba(121, 130, 139, 0.5);
}

.focus\:text-grey-light-50:focus{
  color: rgba(179, 188, 197, 0.5);
}

.focus\:text-grey-lighter-50:focus{
  color: rgba(222, 228, 233, 0.5);
}

.focus\:text-grey-lightest-50:focus{
  color: rgba(244, 246, 249, 0.5);
}

.focus\:text-white-50:focus{
  color: rgba(255, 255, 255, 0.5);
}

.focus\:text-red-50:focus{
  color: rgba(211, 26, 8, 0.5);
}

.focus\:text-green-50:focus{
  color: rgba(102, 187, 8, 0.5);
}

.focus\:text-blue-50:focus{
  color: rgba(31, 168, 226, 0.5);
}

.focus\:text-orange-50:focus{
  color: rgba(247, 148, 14, 0.5);
}

.focus\:text-primary-darkest-50:focus{
  color: rgba(83, 15, 18, 0.5);
}

.focus\:text-primary-darker-50:focus{
  color: rgba(124, 23, 27, 0.5);
}

.focus\:text-primary-dark-50:focus{
  color: rgba(166, 30, 36, 0.5);
}

.focus\:text-primary-50:focus{
  color: rgba(207, 38, 45, 0.5);
}

.focus\:text-primary-light-50:focus{
  color: rgba(217, 81, 87, 0.5);
}

.focus\:text-primary-lighter-50:focus{
  color: rgba(226, 125, 129, 0.5);
}

.focus\:text-primary-lightest-50:focus{
  color: rgba(236, 168, 171, 0.5);
}

.focus\:text-secondary-darkest-50:focus{
  color: rgba(62, 69, 37, 0.5);
}

.focus\:text-secondary-darker-50:focus{
  color: rgba(94, 104, 55, 0.5);
}

.focus\:text-secondary-dark-50:focus{
  color: rgba(125, 138, 74, 0.5);
}

.focus\:text-secondary-50:focus{
  color: rgba(156, 173, 92, 0.5);
}

.focus\:text-secondary-light-50:focus{
  color: rgba(176, 189, 125, 0.5);
}

.focus\:text-secondary-lighter-50:focus{
  color: rgba(196, 206, 157, 0.5);
}

.focus\:text-secondary-lightest-50:focus{
  color: rgba(215, 222, 190, 0.5);
}

.focus\:text-tertiary-darkest-50:focus{
  color: rgba(15, 47, 33, 0.5);
}

.focus\:text-tertiary-darker-50:focus{
  color: rgba(26, 71, 49, 0.5);
}

.focus\:text-tertiary-dark-50:focus{
  color: rgba(31, 157, 85, 0.5);
}

.focus\:text-tertiary-50:focus{
  color: rgba(255, 197, 0, 0.5);
}

.focus\:text-tertiary-light-50:focus{
  color: rgba(81, 216, 138, 0.5);
}

.focus\:text-tertiary-lighter-50:focus{
  color: rgba(162, 245, 191, 0.5);
}

.focus\:text-tertiary-lightest-50:focus{
  color: rgba(227, 252, 236, 0.5);
}

.group:hover .group-hover\:text-border-50{
  color: rgba(230, 235, 245, 0.5);
}

.group:hover .group-hover\:text-form-50{
  color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:text-form-active-50{
  color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:text-black-50{
  color: rgba(33, 37, 41, 0.5);
}

.group:hover .group-hover\:text-grey-darkest-50{
  color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:text-grey-darker-50{
  color: rgba(154, 165, 192, 0.5);
}

.group:hover .group-hover\:text-grey-dark-50{
  color: rgba(66, 80, 92, 0.5);
}

.group:hover .group-hover\:text-grey-50{
  color: rgba(121, 130, 139, 0.5);
}

.group:hover .group-hover\:text-grey-light-50{
  color: rgba(179, 188, 197, 0.5);
}

.group:hover .group-hover\:text-grey-lighter-50{
  color: rgba(222, 228, 233, 0.5);
}

.group:hover .group-hover\:text-grey-lightest-50{
  color: rgba(244, 246, 249, 0.5);
}

.group:hover .group-hover\:text-white-50{
  color: rgba(255, 255, 255, 0.5);
}

.group:hover .group-hover\:text-red-50{
  color: rgba(211, 26, 8, 0.5);
}

.group:hover .group-hover\:text-green-50{
  color: rgba(102, 187, 8, 0.5);
}

.group:hover .group-hover\:text-blue-50{
  color: rgba(31, 168, 226, 0.5);
}

.group:hover .group-hover\:text-orange-50{
  color: rgba(247, 148, 14, 0.5);
}

.group:hover .group-hover\:text-primary-darkest-50{
  color: rgba(83, 15, 18, 0.5);
}

.group:hover .group-hover\:text-primary-darker-50{
  color: rgba(124, 23, 27, 0.5);
}

.group:hover .group-hover\:text-primary-dark-50{
  color: rgba(166, 30, 36, 0.5);
}

.group:hover .group-hover\:text-primary-50{
  color: rgba(207, 38, 45, 0.5);
}

.group:hover .group-hover\:text-primary-light-50{
  color: rgba(217, 81, 87, 0.5);
}

.group:hover .group-hover\:text-primary-lighter-50{
  color: rgba(226, 125, 129, 0.5);
}

.group:hover .group-hover\:text-primary-lightest-50{
  color: rgba(236, 168, 171, 0.5);
}

.group:hover .group-hover\:text-secondary-darkest-50{
  color: rgba(62, 69, 37, 0.5);
}

.group:hover .group-hover\:text-secondary-darker-50{
  color: rgba(94, 104, 55, 0.5);
}

.group:hover .group-hover\:text-secondary-dark-50{
  color: rgba(125, 138, 74, 0.5);
}

.group:hover .group-hover\:text-secondary-50{
  color: rgba(156, 173, 92, 0.5);
}

.group:hover .group-hover\:text-secondary-light-50{
  color: rgba(176, 189, 125, 0.5);
}

.group:hover .group-hover\:text-secondary-lighter-50{
  color: rgba(196, 206, 157, 0.5);
}

.group:hover .group-hover\:text-secondary-lightest-50{
  color: rgba(215, 222, 190, 0.5);
}

.group:hover .group-hover\:text-tertiary-darkest-50{
  color: rgba(15, 47, 33, 0.5);
}

.group:hover .group-hover\:text-tertiary-darker-50{
  color: rgba(26, 71, 49, 0.5);
}

.group:hover .group-hover\:text-tertiary-dark-50{
  color: rgba(31, 157, 85, 0.5);
}

.group:hover .group-hover\:text-tertiary-50{
  color: rgba(255, 197, 0, 0.5);
}

.group:hover .group-hover\:text-tertiary-light-50{
  color: rgba(81, 216, 138, 0.5);
}

.group:hover .group-hover\:text-tertiary-lighter-50{
  color: rgba(162, 245, 191, 0.5);
}

.group:hover .group-hover\:text-tertiary-lightest-50{
  color: rgba(227, 252, 236, 0.5);
}

.bg-border-70{
  background-color: rgba(230, 235, 245, 0.7);
}

.bg-form-70{
  background-color: rgba(121, 130, 139, 0.7);
}

.bg-form-active-70{
  background-color: rgba(66, 80, 92, 0.7);
}

.bg-black-70{
  background-color: rgba(33, 37, 41, 0.7);
}

.bg-grey-darkest-70{
  background-color: rgba(154, 165, 192, 0.7);
}

.bg-grey-darker-70{
  background-color: rgba(154, 165, 192, 0.7);
}

.bg-grey-dark-70{
  background-color: rgba(66, 80, 92, 0.7);
}

.bg-grey-70{
  background-color: rgba(121, 130, 139, 0.7);
}

.bg-grey-light-70{
  background-color: rgba(179, 188, 197, 0.7);
}

.bg-grey-lighter-70{
  background-color: rgba(222, 228, 233, 0.7);
}

.bg-grey-lightest-70{
  background-color: rgba(244, 246, 249, 0.7);
}

.bg-white-70{
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-red-70{
  background-color: rgba(211, 26, 8, 0.7);
}

.bg-green-70{
  background-color: rgba(102, 187, 8, 0.7);
}

.bg-blue-70{
  background-color: rgba(31, 168, 226, 0.7);
}

.bg-orange-70{
  background-color: rgba(247, 148, 14, 0.7);
}

.bg-primary-darkest-70{
  background-color: rgba(83, 15, 18, 0.7);
}

.bg-primary-darker-70{
  background-color: rgba(124, 23, 27, 0.7);
}

.bg-primary-dark-70{
  background-color: rgba(166, 30, 36, 0.7);
}

.bg-primary-70{
  background-color: rgba(207, 38, 45, 0.7);
}

.bg-primary-light-70{
  background-color: rgba(217, 81, 87, 0.7);
}

.bg-primary-lighter-70{
  background-color: rgba(226, 125, 129, 0.7);
}

.bg-primary-lightest-70{
  background-color: rgba(236, 168, 171, 0.7);
}

.bg-secondary-darkest-70{
  background-color: rgba(62, 69, 37, 0.7);
}

.bg-secondary-darker-70{
  background-color: rgba(94, 104, 55, 0.7);
}

.bg-secondary-dark-70{
  background-color: rgba(125, 138, 74, 0.7);
}

.bg-secondary-70{
  background-color: rgba(156, 173, 92, 0.7);
}

.bg-secondary-light-70{
  background-color: rgba(176, 189, 125, 0.7);
}

.bg-secondary-lighter-70{
  background-color: rgba(196, 206, 157, 0.7);
}

.bg-secondary-lightest-70{
  background-color: rgba(215, 222, 190, 0.7);
}

.bg-tertiary-darkest-70{
  background-color: rgba(15, 47, 33, 0.7);
}

.bg-tertiary-darker-70{
  background-color: rgba(26, 71, 49, 0.7);
}

.bg-tertiary-dark-70{
  background-color: rgba(31, 157, 85, 0.7);
}

.bg-tertiary-70{
  background-color: rgba(255, 197, 0, 0.7);
}

.bg-tertiary-light-70{
  background-color: rgba(81, 216, 138, 0.7);
}

.bg-tertiary-lighter-70{
  background-color: rgba(162, 245, 191, 0.7);
}

.bg-tertiary-lightest-70{
  background-color: rgba(227, 252, 236, 0.7);
}

.hover\:bg-border-70:hover{
  background-color: rgba(230, 235, 245, 0.7);
}

.hover\:bg-form-70:hover{
  background-color: rgba(121, 130, 139, 0.7);
}

.hover\:bg-form-active-70:hover{
  background-color: rgba(66, 80, 92, 0.7);
}

.hover\:bg-black-70:hover{
  background-color: rgba(33, 37, 41, 0.7);
}

.hover\:bg-grey-darkest-70:hover{
  background-color: rgba(154, 165, 192, 0.7);
}

.hover\:bg-grey-darker-70:hover{
  background-color: rgba(154, 165, 192, 0.7);
}

.hover\:bg-grey-dark-70:hover{
  background-color: rgba(66, 80, 92, 0.7);
}

.hover\:bg-grey-70:hover{
  background-color: rgba(121, 130, 139, 0.7);
}

.hover\:bg-grey-light-70:hover{
  background-color: rgba(179, 188, 197, 0.7);
}

.hover\:bg-grey-lighter-70:hover{
  background-color: rgba(222, 228, 233, 0.7);
}

.hover\:bg-grey-lightest-70:hover{
  background-color: rgba(244, 246, 249, 0.7);
}

.hover\:bg-white-70:hover{
  background-color: rgba(255, 255, 255, 0.7);
}

.hover\:bg-red-70:hover{
  background-color: rgba(211, 26, 8, 0.7);
}

.hover\:bg-green-70:hover{
  background-color: rgba(102, 187, 8, 0.7);
}

.hover\:bg-blue-70:hover{
  background-color: rgba(31, 168, 226, 0.7);
}

.hover\:bg-orange-70:hover{
  background-color: rgba(247, 148, 14, 0.7);
}

.hover\:bg-primary-darkest-70:hover{
  background-color: rgba(83, 15, 18, 0.7);
}

.hover\:bg-primary-darker-70:hover{
  background-color: rgba(124, 23, 27, 0.7);
}

.hover\:bg-primary-dark-70:hover{
  background-color: rgba(166, 30, 36, 0.7);
}

.hover\:bg-primary-70:hover{
  background-color: rgba(207, 38, 45, 0.7);
}

.hover\:bg-primary-light-70:hover{
  background-color: rgba(217, 81, 87, 0.7);
}

.hover\:bg-primary-lighter-70:hover{
  background-color: rgba(226, 125, 129, 0.7);
}

.hover\:bg-primary-lightest-70:hover{
  background-color: rgba(236, 168, 171, 0.7);
}

.hover\:bg-secondary-darkest-70:hover{
  background-color: rgba(62, 69, 37, 0.7);
}

.hover\:bg-secondary-darker-70:hover{
  background-color: rgba(94, 104, 55, 0.7);
}

.hover\:bg-secondary-dark-70:hover{
  background-color: rgba(125, 138, 74, 0.7);
}

.hover\:bg-secondary-70:hover{
  background-color: rgba(156, 173, 92, 0.7);
}

.hover\:bg-secondary-light-70:hover{
  background-color: rgba(176, 189, 125, 0.7);
}

.hover\:bg-secondary-lighter-70:hover{
  background-color: rgba(196, 206, 157, 0.7);
}

.hover\:bg-secondary-lightest-70:hover{
  background-color: rgba(215, 222, 190, 0.7);
}

.hover\:bg-tertiary-darkest-70:hover{
  background-color: rgba(15, 47, 33, 0.7);
}

.hover\:bg-tertiary-darker-70:hover{
  background-color: rgba(26, 71, 49, 0.7);
}

.hover\:bg-tertiary-dark-70:hover{
  background-color: rgba(31, 157, 85, 0.7);
}

.hover\:bg-tertiary-70:hover{
  background-color: rgba(255, 197, 0, 0.7);
}

.hover\:bg-tertiary-light-70:hover{
  background-color: rgba(81, 216, 138, 0.7);
}

.hover\:bg-tertiary-lighter-70:hover{
  background-color: rgba(162, 245, 191, 0.7);
}

.hover\:bg-tertiary-lightest-70:hover{
  background-color: rgba(227, 252, 236, 0.7);
}

.focus\:bg-border-70:focus{
  background-color: rgba(230, 235, 245, 0.7);
}

.focus\:bg-form-70:focus{
  background-color: rgba(121, 130, 139, 0.7);
}

.focus\:bg-form-active-70:focus{
  background-color: rgba(66, 80, 92, 0.7);
}

.focus\:bg-black-70:focus{
  background-color: rgba(33, 37, 41, 0.7);
}

.focus\:bg-grey-darkest-70:focus{
  background-color: rgba(154, 165, 192, 0.7);
}

.focus\:bg-grey-darker-70:focus{
  background-color: rgba(154, 165, 192, 0.7);
}

.focus\:bg-grey-dark-70:focus{
  background-color: rgba(66, 80, 92, 0.7);
}

.focus\:bg-grey-70:focus{
  background-color: rgba(121, 130, 139, 0.7);
}

.focus\:bg-grey-light-70:focus{
  background-color: rgba(179, 188, 197, 0.7);
}

.focus\:bg-grey-lighter-70:focus{
  background-color: rgba(222, 228, 233, 0.7);
}

.focus\:bg-grey-lightest-70:focus{
  background-color: rgba(244, 246, 249, 0.7);
}

.focus\:bg-white-70:focus{
  background-color: rgba(255, 255, 255, 0.7);
}

.focus\:bg-red-70:focus{
  background-color: rgba(211, 26, 8, 0.7);
}

.focus\:bg-green-70:focus{
  background-color: rgba(102, 187, 8, 0.7);
}

.focus\:bg-blue-70:focus{
  background-color: rgba(31, 168, 226, 0.7);
}

.focus\:bg-orange-70:focus{
  background-color: rgba(247, 148, 14, 0.7);
}

.focus\:bg-primary-darkest-70:focus{
  background-color: rgba(83, 15, 18, 0.7);
}

.focus\:bg-primary-darker-70:focus{
  background-color: rgba(124, 23, 27, 0.7);
}

.focus\:bg-primary-dark-70:focus{
  background-color: rgba(166, 30, 36, 0.7);
}

.focus\:bg-primary-70:focus{
  background-color: rgba(207, 38, 45, 0.7);
}

.focus\:bg-primary-light-70:focus{
  background-color: rgba(217, 81, 87, 0.7);
}

.focus\:bg-primary-lighter-70:focus{
  background-color: rgba(226, 125, 129, 0.7);
}

.focus\:bg-primary-lightest-70:focus{
  background-color: rgba(236, 168, 171, 0.7);
}

.focus\:bg-secondary-darkest-70:focus{
  background-color: rgba(62, 69, 37, 0.7);
}

.focus\:bg-secondary-darker-70:focus{
  background-color: rgba(94, 104, 55, 0.7);
}

.focus\:bg-secondary-dark-70:focus{
  background-color: rgba(125, 138, 74, 0.7);
}

.focus\:bg-secondary-70:focus{
  background-color: rgba(156, 173, 92, 0.7);
}

.focus\:bg-secondary-light-70:focus{
  background-color: rgba(176, 189, 125, 0.7);
}

.focus\:bg-secondary-lighter-70:focus{
  background-color: rgba(196, 206, 157, 0.7);
}

.focus\:bg-secondary-lightest-70:focus{
  background-color: rgba(215, 222, 190, 0.7);
}

.focus\:bg-tertiary-darkest-70:focus{
  background-color: rgba(15, 47, 33, 0.7);
}

.focus\:bg-tertiary-darker-70:focus{
  background-color: rgba(26, 71, 49, 0.7);
}

.focus\:bg-tertiary-dark-70:focus{
  background-color: rgba(31, 157, 85, 0.7);
}

.focus\:bg-tertiary-70:focus{
  background-color: rgba(255, 197, 0, 0.7);
}

.focus\:bg-tertiary-light-70:focus{
  background-color: rgba(81, 216, 138, 0.7);
}

.focus\:bg-tertiary-lighter-70:focus{
  background-color: rgba(162, 245, 191, 0.7);
}

.focus\:bg-tertiary-lightest-70:focus{
  background-color: rgba(227, 252, 236, 0.7);
}

.focus\:bg-border-70:focus{
  background-color: rgba(230, 235, 245, 0.7);
}

.focus\:bg-form-70:focus{
  background-color: rgba(121, 130, 139, 0.7);
}

.focus\:bg-form-active-70:focus{
  background-color: rgba(66, 80, 92, 0.7);
}

.focus\:bg-black-70:focus{
  background-color: rgba(33, 37, 41, 0.7);
}

.focus\:bg-grey-darkest-70:focus{
  background-color: rgba(154, 165, 192, 0.7);
}

.focus\:bg-grey-darker-70:focus{
  background-color: rgba(154, 165, 192, 0.7);
}

.focus\:bg-grey-dark-70:focus{
  background-color: rgba(66, 80, 92, 0.7);
}

.focus\:bg-grey-70:focus{
  background-color: rgba(121, 130, 139, 0.7);
}

.focus\:bg-grey-light-70:focus{
  background-color: rgba(179, 188, 197, 0.7);
}

.focus\:bg-grey-lighter-70:focus{
  background-color: rgba(222, 228, 233, 0.7);
}

.focus\:bg-grey-lightest-70:focus{
  background-color: rgba(244, 246, 249, 0.7);
}

.focus\:bg-white-70:focus{
  background-color: rgba(255, 255, 255, 0.7);
}

.focus\:bg-red-70:focus{
  background-color: rgba(211, 26, 8, 0.7);
}

.focus\:bg-green-70:focus{
  background-color: rgba(102, 187, 8, 0.7);
}

.focus\:bg-blue-70:focus{
  background-color: rgba(31, 168, 226, 0.7);
}

.focus\:bg-orange-70:focus{
  background-color: rgba(247, 148, 14, 0.7);
}

.focus\:bg-primary-darkest-70:focus{
  background-color: rgba(83, 15, 18, 0.7);
}

.focus\:bg-primary-darker-70:focus{
  background-color: rgba(124, 23, 27, 0.7);
}

.focus\:bg-primary-dark-70:focus{
  background-color: rgba(166, 30, 36, 0.7);
}

.focus\:bg-primary-70:focus{
  background-color: rgba(207, 38, 45, 0.7);
}

.focus\:bg-primary-light-70:focus{
  background-color: rgba(217, 81, 87, 0.7);
}

.focus\:bg-primary-lighter-70:focus{
  background-color: rgba(226, 125, 129, 0.7);
}

.focus\:bg-primary-lightest-70:focus{
  background-color: rgba(236, 168, 171, 0.7);
}

.focus\:bg-secondary-darkest-70:focus{
  background-color: rgba(62, 69, 37, 0.7);
}

.focus\:bg-secondary-darker-70:focus{
  background-color: rgba(94, 104, 55, 0.7);
}

.focus\:bg-secondary-dark-70:focus{
  background-color: rgba(125, 138, 74, 0.7);
}

.focus\:bg-secondary-70:focus{
  background-color: rgba(156, 173, 92, 0.7);
}

.focus\:bg-secondary-light-70:focus{
  background-color: rgba(176, 189, 125, 0.7);
}

.focus\:bg-secondary-lighter-70:focus{
  background-color: rgba(196, 206, 157, 0.7);
}

.focus\:bg-secondary-lightest-70:focus{
  background-color: rgba(215, 222, 190, 0.7);
}

.focus\:bg-tertiary-darkest-70:focus{
  background-color: rgba(15, 47, 33, 0.7);
}

.focus\:bg-tertiary-darker-70:focus{
  background-color: rgba(26, 71, 49, 0.7);
}

.focus\:bg-tertiary-dark-70:focus{
  background-color: rgba(31, 157, 85, 0.7);
}

.focus\:bg-tertiary-70:focus{
  background-color: rgba(255, 197, 0, 0.7);
}

.focus\:bg-tertiary-light-70:focus{
  background-color: rgba(81, 216, 138, 0.7);
}

.focus\:bg-tertiary-lighter-70:focus{
  background-color: rgba(162, 245, 191, 0.7);
}

.focus\:bg-tertiary-lightest-70:focus{
  background-color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:bg-border-70{
  background-color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:bg-form-70{
  background-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:bg-form-active-70{
  background-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:bg-black-70{
  background-color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:bg-grey-darkest-70{
  background-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:bg-grey-darker-70{
  background-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:bg-grey-dark-70{
  background-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:bg-grey-70{
  background-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:bg-grey-light-70{
  background-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:bg-grey-lighter-70{
  background-color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:bg-grey-lightest-70{
  background-color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:bg-white-70{
  background-color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:bg-red-70{
  background-color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:bg-green-70{
  background-color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:bg-blue-70{
  background-color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:bg-orange-70{
  background-color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:bg-primary-darkest-70{
  background-color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:bg-primary-darker-70{
  background-color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:bg-primary-dark-70{
  background-color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:bg-primary-70{
  background-color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:bg-primary-light-70{
  background-color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:bg-primary-lighter-70{
  background-color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:bg-primary-lightest-70{
  background-color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:bg-secondary-darkest-70{
  background-color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:bg-secondary-darker-70{
  background-color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:bg-secondary-dark-70{
  background-color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:bg-secondary-70{
  background-color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:bg-secondary-light-70{
  background-color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:bg-secondary-lighter-70{
  background-color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:bg-secondary-lightest-70{
  background-color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:bg-tertiary-darkest-70{
  background-color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:bg-tertiary-darker-70{
  background-color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:bg-tertiary-dark-70{
  background-color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:bg-tertiary-70{
  background-color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:bg-tertiary-light-70{
  background-color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:bg-tertiary-lighter-70{
  background-color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:bg-tertiary-lightest-70{
  background-color: rgba(227, 252, 236, 0.7);
}

.border-border-70{
  border-color: rgba(230, 235, 245, 0.7);
}

.border-t-border-70{
  border-top-color: rgba(230, 235, 245, 0.7);
}

.border-r-border-70{
  border-right-color: rgba(230, 235, 245, 0.7);
}

.border-b-border-70{
  border-bottom-color: rgba(230, 235, 245, 0.7);
}

.border-l-border-70{
  border-left-color: rgba(230, 235, 245, 0.7);
}

.border-form-70{
  border-color: rgba(121, 130, 139, 0.7);
}

.border-t-form-70{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.border-r-form-70{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.border-b-form-70{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.border-l-form-70{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.border-form-active-70{
  border-color: rgba(66, 80, 92, 0.7);
}

.border-t-form-active-70{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.border-r-form-active-70{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.border-b-form-active-70{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.border-l-form-active-70{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.border-black-70{
  border-color: rgba(33, 37, 41, 0.7);
}

.border-t-black-70{
  border-top-color: rgba(33, 37, 41, 0.7);
}

.border-r-black-70{
  border-right-color: rgba(33, 37, 41, 0.7);
}

.border-b-black-70{
  border-bottom-color: rgba(33, 37, 41, 0.7);
}

.border-l-black-70{
  border-left-color: rgba(33, 37, 41, 0.7);
}

.border-grey-darkest-70{
  border-color: rgba(154, 165, 192, 0.7);
}

.border-t-grey-darkest-70{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.border-r-grey-darkest-70{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.border-b-grey-darkest-70{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.border-l-grey-darkest-70{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.border-grey-darker-70{
  border-color: rgba(154, 165, 192, 0.7);
}

.border-t-grey-darker-70{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.border-r-grey-darker-70{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.border-b-grey-darker-70{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.border-l-grey-darker-70{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.border-grey-dark-70{
  border-color: rgba(66, 80, 92, 0.7);
}

.border-t-grey-dark-70{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.border-r-grey-dark-70{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.border-b-grey-dark-70{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.border-l-grey-dark-70{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.border-grey-70{
  border-color: rgba(121, 130, 139, 0.7);
}

.border-t-grey-70{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.border-r-grey-70{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.border-b-grey-70{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.border-l-grey-70{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.border-grey-light-70{
  border-color: rgba(179, 188, 197, 0.7);
}

.border-t-grey-light-70{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.border-r-grey-light-70{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.border-b-grey-light-70{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.border-l-grey-light-70{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.border-grey-lighter-70{
  border-color: rgba(222, 228, 233, 0.7);
}

.border-t-grey-lighter-70{
  border-top-color: rgba(222, 228, 233, 0.7);
}

.border-r-grey-lighter-70{
  border-right-color: rgba(222, 228, 233, 0.7);
}

.border-b-grey-lighter-70{
  border-bottom-color: rgba(222, 228, 233, 0.7);
}

.border-l-grey-lighter-70{
  border-left-color: rgba(222, 228, 233, 0.7);
}

.border-grey-lightest-70{
  border-color: rgba(244, 246, 249, 0.7);
}

.border-t-grey-lightest-70{
  border-top-color: rgba(244, 246, 249, 0.7);
}

.border-r-grey-lightest-70{
  border-right-color: rgba(244, 246, 249, 0.7);
}

.border-b-grey-lightest-70{
  border-bottom-color: rgba(244, 246, 249, 0.7);
}

.border-l-grey-lightest-70{
  border-left-color: rgba(244, 246, 249, 0.7);
}

.border-white-70{
  border-color: rgba(255, 255, 255, 0.7);
}

.border-t-white-70{
  border-top-color: rgba(255, 255, 255, 0.7);
}

.border-r-white-70{
  border-right-color: rgba(255, 255, 255, 0.7);
}

.border-b-white-70{
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.border-l-white-70{
  border-left-color: rgba(255, 255, 255, 0.7);
}

.border-red-70{
  border-color: rgba(211, 26, 8, 0.7);
}

.border-t-red-70{
  border-top-color: rgba(211, 26, 8, 0.7);
}

.border-r-red-70{
  border-right-color: rgba(211, 26, 8, 0.7);
}

.border-b-red-70{
  border-bottom-color: rgba(211, 26, 8, 0.7);
}

.border-l-red-70{
  border-left-color: rgba(211, 26, 8, 0.7);
}

.border-green-70{
  border-color: rgba(102, 187, 8, 0.7);
}

.border-t-green-70{
  border-top-color: rgba(102, 187, 8, 0.7);
}

.border-r-green-70{
  border-right-color: rgba(102, 187, 8, 0.7);
}

.border-b-green-70{
  border-bottom-color: rgba(102, 187, 8, 0.7);
}

.border-l-green-70{
  border-left-color: rgba(102, 187, 8, 0.7);
}

.border-blue-70{
  border-color: rgba(31, 168, 226, 0.7);
}

.border-t-blue-70{
  border-top-color: rgba(31, 168, 226, 0.7);
}

.border-r-blue-70{
  border-right-color: rgba(31, 168, 226, 0.7);
}

.border-b-blue-70{
  border-bottom-color: rgba(31, 168, 226, 0.7);
}

.border-l-blue-70{
  border-left-color: rgba(31, 168, 226, 0.7);
}

.border-orange-70{
  border-color: rgba(247, 148, 14, 0.7);
}

.border-t-orange-70{
  border-top-color: rgba(247, 148, 14, 0.7);
}

.border-r-orange-70{
  border-right-color: rgba(247, 148, 14, 0.7);
}

.border-b-orange-70{
  border-bottom-color: rgba(247, 148, 14, 0.7);
}

.border-l-orange-70{
  border-left-color: rgba(247, 148, 14, 0.7);
}

.border-primary-darkest-70{
  border-color: rgba(83, 15, 18, 0.7);
}

.border-t-primary-darkest-70{
  border-top-color: rgba(83, 15, 18, 0.7);
}

.border-r-primary-darkest-70{
  border-right-color: rgba(83, 15, 18, 0.7);
}

.border-b-primary-darkest-70{
  border-bottom-color: rgba(83, 15, 18, 0.7);
}

.border-l-primary-darkest-70{
  border-left-color: rgba(83, 15, 18, 0.7);
}

.border-primary-darker-70{
  border-color: rgba(124, 23, 27, 0.7);
}

.border-t-primary-darker-70{
  border-top-color: rgba(124, 23, 27, 0.7);
}

.border-r-primary-darker-70{
  border-right-color: rgba(124, 23, 27, 0.7);
}

.border-b-primary-darker-70{
  border-bottom-color: rgba(124, 23, 27, 0.7);
}

.border-l-primary-darker-70{
  border-left-color: rgba(124, 23, 27, 0.7);
}

.border-primary-dark-70{
  border-color: rgba(166, 30, 36, 0.7);
}

.border-t-primary-dark-70{
  border-top-color: rgba(166, 30, 36, 0.7);
}

.border-r-primary-dark-70{
  border-right-color: rgba(166, 30, 36, 0.7);
}

.border-b-primary-dark-70{
  border-bottom-color: rgba(166, 30, 36, 0.7);
}

.border-l-primary-dark-70{
  border-left-color: rgba(166, 30, 36, 0.7);
}

.border-primary-70{
  border-color: rgba(207, 38, 45, 0.7);
}

.border-t-primary-70{
  border-top-color: rgba(207, 38, 45, 0.7);
}

.border-r-primary-70{
  border-right-color: rgba(207, 38, 45, 0.7);
}

.border-b-primary-70{
  border-bottom-color: rgba(207, 38, 45, 0.7);
}

.border-l-primary-70{
  border-left-color: rgba(207, 38, 45, 0.7);
}

.border-primary-light-70{
  border-color: rgba(217, 81, 87, 0.7);
}

.border-t-primary-light-70{
  border-top-color: rgba(217, 81, 87, 0.7);
}

.border-r-primary-light-70{
  border-right-color: rgba(217, 81, 87, 0.7);
}

.border-b-primary-light-70{
  border-bottom-color: rgba(217, 81, 87, 0.7);
}

.border-l-primary-light-70{
  border-left-color: rgba(217, 81, 87, 0.7);
}

.border-primary-lighter-70{
  border-color: rgba(226, 125, 129, 0.7);
}

.border-t-primary-lighter-70{
  border-top-color: rgba(226, 125, 129, 0.7);
}

.border-r-primary-lighter-70{
  border-right-color: rgba(226, 125, 129, 0.7);
}

.border-b-primary-lighter-70{
  border-bottom-color: rgba(226, 125, 129, 0.7);
}

.border-l-primary-lighter-70{
  border-left-color: rgba(226, 125, 129, 0.7);
}

.border-primary-lightest-70{
  border-color: rgba(236, 168, 171, 0.7);
}

.border-t-primary-lightest-70{
  border-top-color: rgba(236, 168, 171, 0.7);
}

.border-r-primary-lightest-70{
  border-right-color: rgba(236, 168, 171, 0.7);
}

.border-b-primary-lightest-70{
  border-bottom-color: rgba(236, 168, 171, 0.7);
}

.border-l-primary-lightest-70{
  border-left-color: rgba(236, 168, 171, 0.7);
}

.border-secondary-darkest-70{
  border-color: rgba(62, 69, 37, 0.7);
}

.border-t-secondary-darkest-70{
  border-top-color: rgba(62, 69, 37, 0.7);
}

.border-r-secondary-darkest-70{
  border-right-color: rgba(62, 69, 37, 0.7);
}

.border-b-secondary-darkest-70{
  border-bottom-color: rgba(62, 69, 37, 0.7);
}

.border-l-secondary-darkest-70{
  border-left-color: rgba(62, 69, 37, 0.7);
}

.border-secondary-darker-70{
  border-color: rgba(94, 104, 55, 0.7);
}

.border-t-secondary-darker-70{
  border-top-color: rgba(94, 104, 55, 0.7);
}

.border-r-secondary-darker-70{
  border-right-color: rgba(94, 104, 55, 0.7);
}

.border-b-secondary-darker-70{
  border-bottom-color: rgba(94, 104, 55, 0.7);
}

.border-l-secondary-darker-70{
  border-left-color: rgba(94, 104, 55, 0.7);
}

.border-secondary-dark-70{
  border-color: rgba(125, 138, 74, 0.7);
}

.border-t-secondary-dark-70{
  border-top-color: rgba(125, 138, 74, 0.7);
}

.border-r-secondary-dark-70{
  border-right-color: rgba(125, 138, 74, 0.7);
}

.border-b-secondary-dark-70{
  border-bottom-color: rgba(125, 138, 74, 0.7);
}

.border-l-secondary-dark-70{
  border-left-color: rgba(125, 138, 74, 0.7);
}

.border-secondary-70{
  border-color: rgba(156, 173, 92, 0.7);
}

.border-t-secondary-70{
  border-top-color: rgba(156, 173, 92, 0.7);
}

.border-r-secondary-70{
  border-right-color: rgba(156, 173, 92, 0.7);
}

.border-b-secondary-70{
  border-bottom-color: rgba(156, 173, 92, 0.7);
}

.border-l-secondary-70{
  border-left-color: rgba(156, 173, 92, 0.7);
}

.border-secondary-light-70{
  border-color: rgba(176, 189, 125, 0.7);
}

.border-t-secondary-light-70{
  border-top-color: rgba(176, 189, 125, 0.7);
}

.border-r-secondary-light-70{
  border-right-color: rgba(176, 189, 125, 0.7);
}

.border-b-secondary-light-70{
  border-bottom-color: rgba(176, 189, 125, 0.7);
}

.border-l-secondary-light-70{
  border-left-color: rgba(176, 189, 125, 0.7);
}

.border-secondary-lighter-70{
  border-color: rgba(196, 206, 157, 0.7);
}

.border-t-secondary-lighter-70{
  border-top-color: rgba(196, 206, 157, 0.7);
}

.border-r-secondary-lighter-70{
  border-right-color: rgba(196, 206, 157, 0.7);
}

.border-b-secondary-lighter-70{
  border-bottom-color: rgba(196, 206, 157, 0.7);
}

.border-l-secondary-lighter-70{
  border-left-color: rgba(196, 206, 157, 0.7);
}

.border-secondary-lightest-70{
  border-color: rgba(215, 222, 190, 0.7);
}

.border-t-secondary-lightest-70{
  border-top-color: rgba(215, 222, 190, 0.7);
}

.border-r-secondary-lightest-70{
  border-right-color: rgba(215, 222, 190, 0.7);
}

.border-b-secondary-lightest-70{
  border-bottom-color: rgba(215, 222, 190, 0.7);
}

.border-l-secondary-lightest-70{
  border-left-color: rgba(215, 222, 190, 0.7);
}

.border-tertiary-darkest-70{
  border-color: rgba(15, 47, 33, 0.7);
}

.border-t-tertiary-darkest-70{
  border-top-color: rgba(15, 47, 33, 0.7);
}

.border-r-tertiary-darkest-70{
  border-right-color: rgba(15, 47, 33, 0.7);
}

.border-b-tertiary-darkest-70{
  border-bottom-color: rgba(15, 47, 33, 0.7);
}

.border-l-tertiary-darkest-70{
  border-left-color: rgba(15, 47, 33, 0.7);
}

.border-tertiary-darker-70{
  border-color: rgba(26, 71, 49, 0.7);
}

.border-t-tertiary-darker-70{
  border-top-color: rgba(26, 71, 49, 0.7);
}

.border-r-tertiary-darker-70{
  border-right-color: rgba(26, 71, 49, 0.7);
}

.border-b-tertiary-darker-70{
  border-bottom-color: rgba(26, 71, 49, 0.7);
}

.border-l-tertiary-darker-70{
  border-left-color: rgba(26, 71, 49, 0.7);
}

.border-tertiary-dark-70{
  border-color: rgba(31, 157, 85, 0.7);
}

.border-t-tertiary-dark-70{
  border-top-color: rgba(31, 157, 85, 0.7);
}

.border-r-tertiary-dark-70{
  border-right-color: rgba(31, 157, 85, 0.7);
}

.border-b-tertiary-dark-70{
  border-bottom-color: rgba(31, 157, 85, 0.7);
}

.border-l-tertiary-dark-70{
  border-left-color: rgba(31, 157, 85, 0.7);
}

.border-tertiary-70{
  border-color: rgba(255, 197, 0, 0.7);
}

.border-t-tertiary-70{
  border-top-color: rgba(255, 197, 0, 0.7);
}

.border-r-tertiary-70{
  border-right-color: rgba(255, 197, 0, 0.7);
}

.border-b-tertiary-70{
  border-bottom-color: rgba(255, 197, 0, 0.7);
}

.border-l-tertiary-70{
  border-left-color: rgba(255, 197, 0, 0.7);
}

.border-tertiary-light-70{
  border-color: rgba(81, 216, 138, 0.7);
}

.border-t-tertiary-light-70{
  border-top-color: rgba(81, 216, 138, 0.7);
}

.border-r-tertiary-light-70{
  border-right-color: rgba(81, 216, 138, 0.7);
}

.border-b-tertiary-light-70{
  border-bottom-color: rgba(81, 216, 138, 0.7);
}

.border-l-tertiary-light-70{
  border-left-color: rgba(81, 216, 138, 0.7);
}

.border-tertiary-lighter-70{
  border-color: rgba(162, 245, 191, 0.7);
}

.border-t-tertiary-lighter-70{
  border-top-color: rgba(162, 245, 191, 0.7);
}

.border-r-tertiary-lighter-70{
  border-right-color: rgba(162, 245, 191, 0.7);
}

.border-b-tertiary-lighter-70{
  border-bottom-color: rgba(162, 245, 191, 0.7);
}

.border-l-tertiary-lighter-70{
  border-left-color: rgba(162, 245, 191, 0.7);
}

.border-tertiary-lightest-70{
  border-color: rgba(227, 252, 236, 0.7);
}

.border-t-tertiary-lightest-70{
  border-top-color: rgba(227, 252, 236, 0.7);
}

.border-r-tertiary-lightest-70{
  border-right-color: rgba(227, 252, 236, 0.7);
}

.border-b-tertiary-lightest-70{
  border-bottom-color: rgba(227, 252, 236, 0.7);
}

.border-l-tertiary-lightest-70{
  border-left-color: rgba(227, 252, 236, 0.7);
}

.border-default-70{
  border-color: rgba(179, 188, 197, 0.7);
}

.border-t-default-70{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.border-r-default-70{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.border-b-default-70{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.border-l-default-70{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-border-70:hover{
  border-color: rgba(230, 235, 245, 0.7);
}

.hover\:border-t-border-70:hover{
  border-top-color: rgba(230, 235, 245, 0.7);
}

.hover\:border-r-border-70:hover{
  border-right-color: rgba(230, 235, 245, 0.7);
}

.hover\:border-b-border-70:hover{
  border-bottom-color: rgba(230, 235, 245, 0.7);
}

.hover\:border-l-border-70:hover{
  border-left-color: rgba(230, 235, 245, 0.7);
}

.hover\:border-form-70:hover{
  border-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-t-form-70:hover{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-r-form-70:hover{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-b-form-70:hover{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-l-form-70:hover{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-form-active-70:hover{
  border-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-t-form-active-70:hover{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-r-form-active-70:hover{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-b-form-active-70:hover{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-l-form-active-70:hover{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-black-70:hover{
  border-color: rgba(33, 37, 41, 0.7);
}

.hover\:border-t-black-70:hover{
  border-top-color: rgba(33, 37, 41, 0.7);
}

.hover\:border-r-black-70:hover{
  border-right-color: rgba(33, 37, 41, 0.7);
}

.hover\:border-b-black-70:hover{
  border-bottom-color: rgba(33, 37, 41, 0.7);
}

.hover\:border-l-black-70:hover{
  border-left-color: rgba(33, 37, 41, 0.7);
}

.hover\:border-grey-darkest-70:hover{
  border-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-t-grey-darkest-70:hover{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-r-grey-darkest-70:hover{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-b-grey-darkest-70:hover{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-l-grey-darkest-70:hover{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-grey-darker-70:hover{
  border-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-t-grey-darker-70:hover{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-r-grey-darker-70:hover{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-b-grey-darker-70:hover{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-l-grey-darker-70:hover{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.hover\:border-grey-dark-70:hover{
  border-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-t-grey-dark-70:hover{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-r-grey-dark-70:hover{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-b-grey-dark-70:hover{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-l-grey-dark-70:hover{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.hover\:border-grey-70:hover{
  border-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-t-grey-70:hover{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-r-grey-70:hover{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-b-grey-70:hover{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-l-grey-70:hover{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.hover\:border-grey-light-70:hover{
  border-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-t-grey-light-70:hover{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-r-grey-light-70:hover{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-b-grey-light-70:hover{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-l-grey-light-70:hover{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-grey-lighter-70:hover{
  border-color: rgba(222, 228, 233, 0.7);
}

.hover\:border-t-grey-lighter-70:hover{
  border-top-color: rgba(222, 228, 233, 0.7);
}

.hover\:border-r-grey-lighter-70:hover{
  border-right-color: rgba(222, 228, 233, 0.7);
}

.hover\:border-b-grey-lighter-70:hover{
  border-bottom-color: rgba(222, 228, 233, 0.7);
}

.hover\:border-l-grey-lighter-70:hover{
  border-left-color: rgba(222, 228, 233, 0.7);
}

.hover\:border-grey-lightest-70:hover{
  border-color: rgba(244, 246, 249, 0.7);
}

.hover\:border-t-grey-lightest-70:hover{
  border-top-color: rgba(244, 246, 249, 0.7);
}

.hover\:border-r-grey-lightest-70:hover{
  border-right-color: rgba(244, 246, 249, 0.7);
}

.hover\:border-b-grey-lightest-70:hover{
  border-bottom-color: rgba(244, 246, 249, 0.7);
}

.hover\:border-l-grey-lightest-70:hover{
  border-left-color: rgba(244, 246, 249, 0.7);
}

.hover\:border-white-70:hover{
  border-color: rgba(255, 255, 255, 0.7);
}

.hover\:border-t-white-70:hover{
  border-top-color: rgba(255, 255, 255, 0.7);
}

.hover\:border-r-white-70:hover{
  border-right-color: rgba(255, 255, 255, 0.7);
}

.hover\:border-b-white-70:hover{
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.hover\:border-l-white-70:hover{
  border-left-color: rgba(255, 255, 255, 0.7);
}

.hover\:border-red-70:hover{
  border-color: rgba(211, 26, 8, 0.7);
}

.hover\:border-t-red-70:hover{
  border-top-color: rgba(211, 26, 8, 0.7);
}

.hover\:border-r-red-70:hover{
  border-right-color: rgba(211, 26, 8, 0.7);
}

.hover\:border-b-red-70:hover{
  border-bottom-color: rgba(211, 26, 8, 0.7);
}

.hover\:border-l-red-70:hover{
  border-left-color: rgba(211, 26, 8, 0.7);
}

.hover\:border-green-70:hover{
  border-color: rgba(102, 187, 8, 0.7);
}

.hover\:border-t-green-70:hover{
  border-top-color: rgba(102, 187, 8, 0.7);
}

.hover\:border-r-green-70:hover{
  border-right-color: rgba(102, 187, 8, 0.7);
}

.hover\:border-b-green-70:hover{
  border-bottom-color: rgba(102, 187, 8, 0.7);
}

.hover\:border-l-green-70:hover{
  border-left-color: rgba(102, 187, 8, 0.7);
}

.hover\:border-blue-70:hover{
  border-color: rgba(31, 168, 226, 0.7);
}

.hover\:border-t-blue-70:hover{
  border-top-color: rgba(31, 168, 226, 0.7);
}

.hover\:border-r-blue-70:hover{
  border-right-color: rgba(31, 168, 226, 0.7);
}

.hover\:border-b-blue-70:hover{
  border-bottom-color: rgba(31, 168, 226, 0.7);
}

.hover\:border-l-blue-70:hover{
  border-left-color: rgba(31, 168, 226, 0.7);
}

.hover\:border-orange-70:hover{
  border-color: rgba(247, 148, 14, 0.7);
}

.hover\:border-t-orange-70:hover{
  border-top-color: rgba(247, 148, 14, 0.7);
}

.hover\:border-r-orange-70:hover{
  border-right-color: rgba(247, 148, 14, 0.7);
}

.hover\:border-b-orange-70:hover{
  border-bottom-color: rgba(247, 148, 14, 0.7);
}

.hover\:border-l-orange-70:hover{
  border-left-color: rgba(247, 148, 14, 0.7);
}

.hover\:border-primary-darkest-70:hover{
  border-color: rgba(83, 15, 18, 0.7);
}

.hover\:border-t-primary-darkest-70:hover{
  border-top-color: rgba(83, 15, 18, 0.7);
}

.hover\:border-r-primary-darkest-70:hover{
  border-right-color: rgba(83, 15, 18, 0.7);
}

.hover\:border-b-primary-darkest-70:hover{
  border-bottom-color: rgba(83, 15, 18, 0.7);
}

.hover\:border-l-primary-darkest-70:hover{
  border-left-color: rgba(83, 15, 18, 0.7);
}

.hover\:border-primary-darker-70:hover{
  border-color: rgba(124, 23, 27, 0.7);
}

.hover\:border-t-primary-darker-70:hover{
  border-top-color: rgba(124, 23, 27, 0.7);
}

.hover\:border-r-primary-darker-70:hover{
  border-right-color: rgba(124, 23, 27, 0.7);
}

.hover\:border-b-primary-darker-70:hover{
  border-bottom-color: rgba(124, 23, 27, 0.7);
}

.hover\:border-l-primary-darker-70:hover{
  border-left-color: rgba(124, 23, 27, 0.7);
}

.hover\:border-primary-dark-70:hover{
  border-color: rgba(166, 30, 36, 0.7);
}

.hover\:border-t-primary-dark-70:hover{
  border-top-color: rgba(166, 30, 36, 0.7);
}

.hover\:border-r-primary-dark-70:hover{
  border-right-color: rgba(166, 30, 36, 0.7);
}

.hover\:border-b-primary-dark-70:hover{
  border-bottom-color: rgba(166, 30, 36, 0.7);
}

.hover\:border-l-primary-dark-70:hover{
  border-left-color: rgba(166, 30, 36, 0.7);
}

.hover\:border-primary-70:hover{
  border-color: rgba(207, 38, 45, 0.7);
}

.hover\:border-t-primary-70:hover{
  border-top-color: rgba(207, 38, 45, 0.7);
}

.hover\:border-r-primary-70:hover{
  border-right-color: rgba(207, 38, 45, 0.7);
}

.hover\:border-b-primary-70:hover{
  border-bottom-color: rgba(207, 38, 45, 0.7);
}

.hover\:border-l-primary-70:hover{
  border-left-color: rgba(207, 38, 45, 0.7);
}

.hover\:border-primary-light-70:hover{
  border-color: rgba(217, 81, 87, 0.7);
}

.hover\:border-t-primary-light-70:hover{
  border-top-color: rgba(217, 81, 87, 0.7);
}

.hover\:border-r-primary-light-70:hover{
  border-right-color: rgba(217, 81, 87, 0.7);
}

.hover\:border-b-primary-light-70:hover{
  border-bottom-color: rgba(217, 81, 87, 0.7);
}

.hover\:border-l-primary-light-70:hover{
  border-left-color: rgba(217, 81, 87, 0.7);
}

.hover\:border-primary-lighter-70:hover{
  border-color: rgba(226, 125, 129, 0.7);
}

.hover\:border-t-primary-lighter-70:hover{
  border-top-color: rgba(226, 125, 129, 0.7);
}

.hover\:border-r-primary-lighter-70:hover{
  border-right-color: rgba(226, 125, 129, 0.7);
}

.hover\:border-b-primary-lighter-70:hover{
  border-bottom-color: rgba(226, 125, 129, 0.7);
}

.hover\:border-l-primary-lighter-70:hover{
  border-left-color: rgba(226, 125, 129, 0.7);
}

.hover\:border-primary-lightest-70:hover{
  border-color: rgba(236, 168, 171, 0.7);
}

.hover\:border-t-primary-lightest-70:hover{
  border-top-color: rgba(236, 168, 171, 0.7);
}

.hover\:border-r-primary-lightest-70:hover{
  border-right-color: rgba(236, 168, 171, 0.7);
}

.hover\:border-b-primary-lightest-70:hover{
  border-bottom-color: rgba(236, 168, 171, 0.7);
}

.hover\:border-l-primary-lightest-70:hover{
  border-left-color: rgba(236, 168, 171, 0.7);
}

.hover\:border-secondary-darkest-70:hover{
  border-color: rgba(62, 69, 37, 0.7);
}

.hover\:border-t-secondary-darkest-70:hover{
  border-top-color: rgba(62, 69, 37, 0.7);
}

.hover\:border-r-secondary-darkest-70:hover{
  border-right-color: rgba(62, 69, 37, 0.7);
}

.hover\:border-b-secondary-darkest-70:hover{
  border-bottom-color: rgba(62, 69, 37, 0.7);
}

.hover\:border-l-secondary-darkest-70:hover{
  border-left-color: rgba(62, 69, 37, 0.7);
}

.hover\:border-secondary-darker-70:hover{
  border-color: rgba(94, 104, 55, 0.7);
}

.hover\:border-t-secondary-darker-70:hover{
  border-top-color: rgba(94, 104, 55, 0.7);
}

.hover\:border-r-secondary-darker-70:hover{
  border-right-color: rgba(94, 104, 55, 0.7);
}

.hover\:border-b-secondary-darker-70:hover{
  border-bottom-color: rgba(94, 104, 55, 0.7);
}

.hover\:border-l-secondary-darker-70:hover{
  border-left-color: rgba(94, 104, 55, 0.7);
}

.hover\:border-secondary-dark-70:hover{
  border-color: rgba(125, 138, 74, 0.7);
}

.hover\:border-t-secondary-dark-70:hover{
  border-top-color: rgba(125, 138, 74, 0.7);
}

.hover\:border-r-secondary-dark-70:hover{
  border-right-color: rgba(125, 138, 74, 0.7);
}

.hover\:border-b-secondary-dark-70:hover{
  border-bottom-color: rgba(125, 138, 74, 0.7);
}

.hover\:border-l-secondary-dark-70:hover{
  border-left-color: rgba(125, 138, 74, 0.7);
}

.hover\:border-secondary-70:hover{
  border-color: rgba(156, 173, 92, 0.7);
}

.hover\:border-t-secondary-70:hover{
  border-top-color: rgba(156, 173, 92, 0.7);
}

.hover\:border-r-secondary-70:hover{
  border-right-color: rgba(156, 173, 92, 0.7);
}

.hover\:border-b-secondary-70:hover{
  border-bottom-color: rgba(156, 173, 92, 0.7);
}

.hover\:border-l-secondary-70:hover{
  border-left-color: rgba(156, 173, 92, 0.7);
}

.hover\:border-secondary-light-70:hover{
  border-color: rgba(176, 189, 125, 0.7);
}

.hover\:border-t-secondary-light-70:hover{
  border-top-color: rgba(176, 189, 125, 0.7);
}

.hover\:border-r-secondary-light-70:hover{
  border-right-color: rgba(176, 189, 125, 0.7);
}

.hover\:border-b-secondary-light-70:hover{
  border-bottom-color: rgba(176, 189, 125, 0.7);
}

.hover\:border-l-secondary-light-70:hover{
  border-left-color: rgba(176, 189, 125, 0.7);
}

.hover\:border-secondary-lighter-70:hover{
  border-color: rgba(196, 206, 157, 0.7);
}

.hover\:border-t-secondary-lighter-70:hover{
  border-top-color: rgba(196, 206, 157, 0.7);
}

.hover\:border-r-secondary-lighter-70:hover{
  border-right-color: rgba(196, 206, 157, 0.7);
}

.hover\:border-b-secondary-lighter-70:hover{
  border-bottom-color: rgba(196, 206, 157, 0.7);
}

.hover\:border-l-secondary-lighter-70:hover{
  border-left-color: rgba(196, 206, 157, 0.7);
}

.hover\:border-secondary-lightest-70:hover{
  border-color: rgba(215, 222, 190, 0.7);
}

.hover\:border-t-secondary-lightest-70:hover{
  border-top-color: rgba(215, 222, 190, 0.7);
}

.hover\:border-r-secondary-lightest-70:hover{
  border-right-color: rgba(215, 222, 190, 0.7);
}

.hover\:border-b-secondary-lightest-70:hover{
  border-bottom-color: rgba(215, 222, 190, 0.7);
}

.hover\:border-l-secondary-lightest-70:hover{
  border-left-color: rgba(215, 222, 190, 0.7);
}

.hover\:border-tertiary-darkest-70:hover{
  border-color: rgba(15, 47, 33, 0.7);
}

.hover\:border-t-tertiary-darkest-70:hover{
  border-top-color: rgba(15, 47, 33, 0.7);
}

.hover\:border-r-tertiary-darkest-70:hover{
  border-right-color: rgba(15, 47, 33, 0.7);
}

.hover\:border-b-tertiary-darkest-70:hover{
  border-bottom-color: rgba(15, 47, 33, 0.7);
}

.hover\:border-l-tertiary-darkest-70:hover{
  border-left-color: rgba(15, 47, 33, 0.7);
}

.hover\:border-tertiary-darker-70:hover{
  border-color: rgba(26, 71, 49, 0.7);
}

.hover\:border-t-tertiary-darker-70:hover{
  border-top-color: rgba(26, 71, 49, 0.7);
}

.hover\:border-r-tertiary-darker-70:hover{
  border-right-color: rgba(26, 71, 49, 0.7);
}

.hover\:border-b-tertiary-darker-70:hover{
  border-bottom-color: rgba(26, 71, 49, 0.7);
}

.hover\:border-l-tertiary-darker-70:hover{
  border-left-color: rgba(26, 71, 49, 0.7);
}

.hover\:border-tertiary-dark-70:hover{
  border-color: rgba(31, 157, 85, 0.7);
}

.hover\:border-t-tertiary-dark-70:hover{
  border-top-color: rgba(31, 157, 85, 0.7);
}

.hover\:border-r-tertiary-dark-70:hover{
  border-right-color: rgba(31, 157, 85, 0.7);
}

.hover\:border-b-tertiary-dark-70:hover{
  border-bottom-color: rgba(31, 157, 85, 0.7);
}

.hover\:border-l-tertiary-dark-70:hover{
  border-left-color: rgba(31, 157, 85, 0.7);
}

.hover\:border-tertiary-70:hover{
  border-color: rgba(255, 197, 0, 0.7);
}

.hover\:border-t-tertiary-70:hover{
  border-top-color: rgba(255, 197, 0, 0.7);
}

.hover\:border-r-tertiary-70:hover{
  border-right-color: rgba(255, 197, 0, 0.7);
}

.hover\:border-b-tertiary-70:hover{
  border-bottom-color: rgba(255, 197, 0, 0.7);
}

.hover\:border-l-tertiary-70:hover{
  border-left-color: rgba(255, 197, 0, 0.7);
}

.hover\:border-tertiary-light-70:hover{
  border-color: rgba(81, 216, 138, 0.7);
}

.hover\:border-t-tertiary-light-70:hover{
  border-top-color: rgba(81, 216, 138, 0.7);
}

.hover\:border-r-tertiary-light-70:hover{
  border-right-color: rgba(81, 216, 138, 0.7);
}

.hover\:border-b-tertiary-light-70:hover{
  border-bottom-color: rgba(81, 216, 138, 0.7);
}

.hover\:border-l-tertiary-light-70:hover{
  border-left-color: rgba(81, 216, 138, 0.7);
}

.hover\:border-tertiary-lighter-70:hover{
  border-color: rgba(162, 245, 191, 0.7);
}

.hover\:border-t-tertiary-lighter-70:hover{
  border-top-color: rgba(162, 245, 191, 0.7);
}

.hover\:border-r-tertiary-lighter-70:hover{
  border-right-color: rgba(162, 245, 191, 0.7);
}

.hover\:border-b-tertiary-lighter-70:hover{
  border-bottom-color: rgba(162, 245, 191, 0.7);
}

.hover\:border-l-tertiary-lighter-70:hover{
  border-left-color: rgba(162, 245, 191, 0.7);
}

.hover\:border-tertiary-lightest-70:hover{
  border-color: rgba(227, 252, 236, 0.7);
}

.hover\:border-t-tertiary-lightest-70:hover{
  border-top-color: rgba(227, 252, 236, 0.7);
}

.hover\:border-r-tertiary-lightest-70:hover{
  border-right-color: rgba(227, 252, 236, 0.7);
}

.hover\:border-b-tertiary-lightest-70:hover{
  border-bottom-color: rgba(227, 252, 236, 0.7);
}

.hover\:border-l-tertiary-lightest-70:hover{
  border-left-color: rgba(227, 252, 236, 0.7);
}

.hover\:border-default-70:hover{
  border-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-t-default-70:hover{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-r-default-70:hover{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-b-default-70:hover{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.hover\:border-l-default-70:hover{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-border-70:focus{
  border-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-t-border-70:focus{
  border-top-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-r-border-70:focus{
  border-right-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-b-border-70:focus{
  border-bottom-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-l-border-70:focus{
  border-left-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-form-70:focus{
  border-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-t-form-70:focus{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-r-form-70:focus{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-b-form-70:focus{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-l-form-70:focus{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-form-active-70:focus{
  border-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-t-form-active-70:focus{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-r-form-active-70:focus{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-b-form-active-70:focus{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-l-form-active-70:focus{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-black-70:focus{
  border-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-t-black-70:focus{
  border-top-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-r-black-70:focus{
  border-right-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-b-black-70:focus{
  border-bottom-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-l-black-70:focus{
  border-left-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-grey-darkest-70:focus{
  border-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-t-grey-darkest-70:focus{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-r-grey-darkest-70:focus{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-b-grey-darkest-70:focus{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-l-grey-darkest-70:focus{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-grey-darker-70:focus{
  border-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-t-grey-darker-70:focus{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-r-grey-darker-70:focus{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-b-grey-darker-70:focus{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-l-grey-darker-70:focus{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-grey-dark-70:focus{
  border-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-t-grey-dark-70:focus{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-r-grey-dark-70:focus{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-b-grey-dark-70:focus{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-l-grey-dark-70:focus{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-grey-70:focus{
  border-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-t-grey-70:focus{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-r-grey-70:focus{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-b-grey-70:focus{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-l-grey-70:focus{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-grey-light-70:focus{
  border-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-t-grey-light-70:focus{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-r-grey-light-70:focus{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-b-grey-light-70:focus{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-l-grey-light-70:focus{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-grey-lighter-70:focus{
  border-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-t-grey-lighter-70:focus{
  border-top-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-r-grey-lighter-70:focus{
  border-right-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-b-grey-lighter-70:focus{
  border-bottom-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-l-grey-lighter-70:focus{
  border-left-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-grey-lightest-70:focus{
  border-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-t-grey-lightest-70:focus{
  border-top-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-r-grey-lightest-70:focus{
  border-right-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-b-grey-lightest-70:focus{
  border-bottom-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-l-grey-lightest-70:focus{
  border-left-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-white-70:focus{
  border-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-t-white-70:focus{
  border-top-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-r-white-70:focus{
  border-right-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-b-white-70:focus{
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-l-white-70:focus{
  border-left-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-red-70:focus{
  border-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-t-red-70:focus{
  border-top-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-r-red-70:focus{
  border-right-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-b-red-70:focus{
  border-bottom-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-l-red-70:focus{
  border-left-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-green-70:focus{
  border-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-t-green-70:focus{
  border-top-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-r-green-70:focus{
  border-right-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-b-green-70:focus{
  border-bottom-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-l-green-70:focus{
  border-left-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-blue-70:focus{
  border-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-t-blue-70:focus{
  border-top-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-r-blue-70:focus{
  border-right-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-b-blue-70:focus{
  border-bottom-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-l-blue-70:focus{
  border-left-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-orange-70:focus{
  border-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-t-orange-70:focus{
  border-top-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-r-orange-70:focus{
  border-right-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-b-orange-70:focus{
  border-bottom-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-l-orange-70:focus{
  border-left-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-primary-darkest-70:focus{
  border-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-t-primary-darkest-70:focus{
  border-top-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-r-primary-darkest-70:focus{
  border-right-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-b-primary-darkest-70:focus{
  border-bottom-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-l-primary-darkest-70:focus{
  border-left-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-primary-darker-70:focus{
  border-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-t-primary-darker-70:focus{
  border-top-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-r-primary-darker-70:focus{
  border-right-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-b-primary-darker-70:focus{
  border-bottom-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-l-primary-darker-70:focus{
  border-left-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-primary-dark-70:focus{
  border-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-t-primary-dark-70:focus{
  border-top-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-r-primary-dark-70:focus{
  border-right-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-b-primary-dark-70:focus{
  border-bottom-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-l-primary-dark-70:focus{
  border-left-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-primary-70:focus{
  border-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-t-primary-70:focus{
  border-top-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-r-primary-70:focus{
  border-right-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-b-primary-70:focus{
  border-bottom-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-l-primary-70:focus{
  border-left-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-primary-light-70:focus{
  border-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-t-primary-light-70:focus{
  border-top-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-r-primary-light-70:focus{
  border-right-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-b-primary-light-70:focus{
  border-bottom-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-l-primary-light-70:focus{
  border-left-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-primary-lighter-70:focus{
  border-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-t-primary-lighter-70:focus{
  border-top-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-r-primary-lighter-70:focus{
  border-right-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-b-primary-lighter-70:focus{
  border-bottom-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-l-primary-lighter-70:focus{
  border-left-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-primary-lightest-70:focus{
  border-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-t-primary-lightest-70:focus{
  border-top-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-r-primary-lightest-70:focus{
  border-right-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-b-primary-lightest-70:focus{
  border-bottom-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-l-primary-lightest-70:focus{
  border-left-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-secondary-darkest-70:focus{
  border-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-t-secondary-darkest-70:focus{
  border-top-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-r-secondary-darkest-70:focus{
  border-right-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-b-secondary-darkest-70:focus{
  border-bottom-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-l-secondary-darkest-70:focus{
  border-left-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-secondary-darker-70:focus{
  border-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-t-secondary-darker-70:focus{
  border-top-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-r-secondary-darker-70:focus{
  border-right-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-b-secondary-darker-70:focus{
  border-bottom-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-l-secondary-darker-70:focus{
  border-left-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-secondary-dark-70:focus{
  border-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-t-secondary-dark-70:focus{
  border-top-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-r-secondary-dark-70:focus{
  border-right-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-b-secondary-dark-70:focus{
  border-bottom-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-l-secondary-dark-70:focus{
  border-left-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-secondary-70:focus{
  border-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-t-secondary-70:focus{
  border-top-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-r-secondary-70:focus{
  border-right-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-b-secondary-70:focus{
  border-bottom-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-l-secondary-70:focus{
  border-left-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-secondary-light-70:focus{
  border-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-t-secondary-light-70:focus{
  border-top-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-r-secondary-light-70:focus{
  border-right-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-b-secondary-light-70:focus{
  border-bottom-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-l-secondary-light-70:focus{
  border-left-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-secondary-lighter-70:focus{
  border-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-t-secondary-lighter-70:focus{
  border-top-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-r-secondary-lighter-70:focus{
  border-right-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-b-secondary-lighter-70:focus{
  border-bottom-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-l-secondary-lighter-70:focus{
  border-left-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-secondary-lightest-70:focus{
  border-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-t-secondary-lightest-70:focus{
  border-top-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-r-secondary-lightest-70:focus{
  border-right-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-b-secondary-lightest-70:focus{
  border-bottom-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-l-secondary-lightest-70:focus{
  border-left-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-tertiary-darkest-70:focus{
  border-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-t-tertiary-darkest-70:focus{
  border-top-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-r-tertiary-darkest-70:focus{
  border-right-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-b-tertiary-darkest-70:focus{
  border-bottom-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-l-tertiary-darkest-70:focus{
  border-left-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-tertiary-darker-70:focus{
  border-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-t-tertiary-darker-70:focus{
  border-top-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-r-tertiary-darker-70:focus{
  border-right-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-b-tertiary-darker-70:focus{
  border-bottom-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-l-tertiary-darker-70:focus{
  border-left-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-tertiary-dark-70:focus{
  border-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-t-tertiary-dark-70:focus{
  border-top-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-r-tertiary-dark-70:focus{
  border-right-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-b-tertiary-dark-70:focus{
  border-bottom-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-l-tertiary-dark-70:focus{
  border-left-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-tertiary-70:focus{
  border-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-t-tertiary-70:focus{
  border-top-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-r-tertiary-70:focus{
  border-right-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-b-tertiary-70:focus{
  border-bottom-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-l-tertiary-70:focus{
  border-left-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-tertiary-light-70:focus{
  border-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-t-tertiary-light-70:focus{
  border-top-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-r-tertiary-light-70:focus{
  border-right-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-b-tertiary-light-70:focus{
  border-bottom-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-l-tertiary-light-70:focus{
  border-left-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-tertiary-lighter-70:focus{
  border-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-t-tertiary-lighter-70:focus{
  border-top-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-r-tertiary-lighter-70:focus{
  border-right-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-b-tertiary-lighter-70:focus{
  border-bottom-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-l-tertiary-lighter-70:focus{
  border-left-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-tertiary-lightest-70:focus{
  border-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-t-tertiary-lightest-70:focus{
  border-top-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-r-tertiary-lightest-70:focus{
  border-right-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-b-tertiary-lightest-70:focus{
  border-bottom-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-l-tertiary-lightest-70:focus{
  border-left-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-default-70:focus{
  border-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-t-default-70:focus{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-r-default-70:focus{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-b-default-70:focus{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-l-default-70:focus{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-border-70:focus{
  border-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-t-border-70:focus{
  border-top-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-r-border-70:focus{
  border-right-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-b-border-70:focus{
  border-bottom-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-l-border-70:focus{
  border-left-color: rgba(230, 235, 245, 0.7);
}

.focus\:border-form-70:focus{
  border-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-t-form-70:focus{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-r-form-70:focus{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-b-form-70:focus{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-l-form-70:focus{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-form-active-70:focus{
  border-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-t-form-active-70:focus{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-r-form-active-70:focus{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-b-form-active-70:focus{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-l-form-active-70:focus{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-black-70:focus{
  border-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-t-black-70:focus{
  border-top-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-r-black-70:focus{
  border-right-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-b-black-70:focus{
  border-bottom-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-l-black-70:focus{
  border-left-color: rgba(33, 37, 41, 0.7);
}

.focus\:border-grey-darkest-70:focus{
  border-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-t-grey-darkest-70:focus{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-r-grey-darkest-70:focus{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-b-grey-darkest-70:focus{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-l-grey-darkest-70:focus{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-grey-darker-70:focus{
  border-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-t-grey-darker-70:focus{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-r-grey-darker-70:focus{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-b-grey-darker-70:focus{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-l-grey-darker-70:focus{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.focus\:border-grey-dark-70:focus{
  border-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-t-grey-dark-70:focus{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-r-grey-dark-70:focus{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-b-grey-dark-70:focus{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-l-grey-dark-70:focus{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.focus\:border-grey-70:focus{
  border-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-t-grey-70:focus{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-r-grey-70:focus{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-b-grey-70:focus{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-l-grey-70:focus{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.focus\:border-grey-light-70:focus{
  border-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-t-grey-light-70:focus{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-r-grey-light-70:focus{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-b-grey-light-70:focus{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-l-grey-light-70:focus{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-grey-lighter-70:focus{
  border-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-t-grey-lighter-70:focus{
  border-top-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-r-grey-lighter-70:focus{
  border-right-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-b-grey-lighter-70:focus{
  border-bottom-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-l-grey-lighter-70:focus{
  border-left-color: rgba(222, 228, 233, 0.7);
}

.focus\:border-grey-lightest-70:focus{
  border-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-t-grey-lightest-70:focus{
  border-top-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-r-grey-lightest-70:focus{
  border-right-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-b-grey-lightest-70:focus{
  border-bottom-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-l-grey-lightest-70:focus{
  border-left-color: rgba(244, 246, 249, 0.7);
}

.focus\:border-white-70:focus{
  border-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-t-white-70:focus{
  border-top-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-r-white-70:focus{
  border-right-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-b-white-70:focus{
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-l-white-70:focus{
  border-left-color: rgba(255, 255, 255, 0.7);
}

.focus\:border-red-70:focus{
  border-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-t-red-70:focus{
  border-top-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-r-red-70:focus{
  border-right-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-b-red-70:focus{
  border-bottom-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-l-red-70:focus{
  border-left-color: rgba(211, 26, 8, 0.7);
}

.focus\:border-green-70:focus{
  border-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-t-green-70:focus{
  border-top-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-r-green-70:focus{
  border-right-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-b-green-70:focus{
  border-bottom-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-l-green-70:focus{
  border-left-color: rgba(102, 187, 8, 0.7);
}

.focus\:border-blue-70:focus{
  border-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-t-blue-70:focus{
  border-top-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-r-blue-70:focus{
  border-right-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-b-blue-70:focus{
  border-bottom-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-l-blue-70:focus{
  border-left-color: rgba(31, 168, 226, 0.7);
}

.focus\:border-orange-70:focus{
  border-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-t-orange-70:focus{
  border-top-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-r-orange-70:focus{
  border-right-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-b-orange-70:focus{
  border-bottom-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-l-orange-70:focus{
  border-left-color: rgba(247, 148, 14, 0.7);
}

.focus\:border-primary-darkest-70:focus{
  border-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-t-primary-darkest-70:focus{
  border-top-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-r-primary-darkest-70:focus{
  border-right-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-b-primary-darkest-70:focus{
  border-bottom-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-l-primary-darkest-70:focus{
  border-left-color: rgba(83, 15, 18, 0.7);
}

.focus\:border-primary-darker-70:focus{
  border-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-t-primary-darker-70:focus{
  border-top-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-r-primary-darker-70:focus{
  border-right-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-b-primary-darker-70:focus{
  border-bottom-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-l-primary-darker-70:focus{
  border-left-color: rgba(124, 23, 27, 0.7);
}

.focus\:border-primary-dark-70:focus{
  border-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-t-primary-dark-70:focus{
  border-top-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-r-primary-dark-70:focus{
  border-right-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-b-primary-dark-70:focus{
  border-bottom-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-l-primary-dark-70:focus{
  border-left-color: rgba(166, 30, 36, 0.7);
}

.focus\:border-primary-70:focus{
  border-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-t-primary-70:focus{
  border-top-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-r-primary-70:focus{
  border-right-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-b-primary-70:focus{
  border-bottom-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-l-primary-70:focus{
  border-left-color: rgba(207, 38, 45, 0.7);
}

.focus\:border-primary-light-70:focus{
  border-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-t-primary-light-70:focus{
  border-top-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-r-primary-light-70:focus{
  border-right-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-b-primary-light-70:focus{
  border-bottom-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-l-primary-light-70:focus{
  border-left-color: rgba(217, 81, 87, 0.7);
}

.focus\:border-primary-lighter-70:focus{
  border-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-t-primary-lighter-70:focus{
  border-top-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-r-primary-lighter-70:focus{
  border-right-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-b-primary-lighter-70:focus{
  border-bottom-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-l-primary-lighter-70:focus{
  border-left-color: rgba(226, 125, 129, 0.7);
}

.focus\:border-primary-lightest-70:focus{
  border-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-t-primary-lightest-70:focus{
  border-top-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-r-primary-lightest-70:focus{
  border-right-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-b-primary-lightest-70:focus{
  border-bottom-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-l-primary-lightest-70:focus{
  border-left-color: rgba(236, 168, 171, 0.7);
}

.focus\:border-secondary-darkest-70:focus{
  border-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-t-secondary-darkest-70:focus{
  border-top-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-r-secondary-darkest-70:focus{
  border-right-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-b-secondary-darkest-70:focus{
  border-bottom-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-l-secondary-darkest-70:focus{
  border-left-color: rgba(62, 69, 37, 0.7);
}

.focus\:border-secondary-darker-70:focus{
  border-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-t-secondary-darker-70:focus{
  border-top-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-r-secondary-darker-70:focus{
  border-right-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-b-secondary-darker-70:focus{
  border-bottom-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-l-secondary-darker-70:focus{
  border-left-color: rgba(94, 104, 55, 0.7);
}

.focus\:border-secondary-dark-70:focus{
  border-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-t-secondary-dark-70:focus{
  border-top-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-r-secondary-dark-70:focus{
  border-right-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-b-secondary-dark-70:focus{
  border-bottom-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-l-secondary-dark-70:focus{
  border-left-color: rgba(125, 138, 74, 0.7);
}

.focus\:border-secondary-70:focus{
  border-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-t-secondary-70:focus{
  border-top-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-r-secondary-70:focus{
  border-right-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-b-secondary-70:focus{
  border-bottom-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-l-secondary-70:focus{
  border-left-color: rgba(156, 173, 92, 0.7);
}

.focus\:border-secondary-light-70:focus{
  border-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-t-secondary-light-70:focus{
  border-top-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-r-secondary-light-70:focus{
  border-right-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-b-secondary-light-70:focus{
  border-bottom-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-l-secondary-light-70:focus{
  border-left-color: rgba(176, 189, 125, 0.7);
}

.focus\:border-secondary-lighter-70:focus{
  border-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-t-secondary-lighter-70:focus{
  border-top-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-r-secondary-lighter-70:focus{
  border-right-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-b-secondary-lighter-70:focus{
  border-bottom-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-l-secondary-lighter-70:focus{
  border-left-color: rgba(196, 206, 157, 0.7);
}

.focus\:border-secondary-lightest-70:focus{
  border-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-t-secondary-lightest-70:focus{
  border-top-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-r-secondary-lightest-70:focus{
  border-right-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-b-secondary-lightest-70:focus{
  border-bottom-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-l-secondary-lightest-70:focus{
  border-left-color: rgba(215, 222, 190, 0.7);
}

.focus\:border-tertiary-darkest-70:focus{
  border-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-t-tertiary-darkest-70:focus{
  border-top-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-r-tertiary-darkest-70:focus{
  border-right-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-b-tertiary-darkest-70:focus{
  border-bottom-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-l-tertiary-darkest-70:focus{
  border-left-color: rgba(15, 47, 33, 0.7);
}

.focus\:border-tertiary-darker-70:focus{
  border-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-t-tertiary-darker-70:focus{
  border-top-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-r-tertiary-darker-70:focus{
  border-right-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-b-tertiary-darker-70:focus{
  border-bottom-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-l-tertiary-darker-70:focus{
  border-left-color: rgba(26, 71, 49, 0.7);
}

.focus\:border-tertiary-dark-70:focus{
  border-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-t-tertiary-dark-70:focus{
  border-top-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-r-tertiary-dark-70:focus{
  border-right-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-b-tertiary-dark-70:focus{
  border-bottom-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-l-tertiary-dark-70:focus{
  border-left-color: rgba(31, 157, 85, 0.7);
}

.focus\:border-tertiary-70:focus{
  border-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-t-tertiary-70:focus{
  border-top-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-r-tertiary-70:focus{
  border-right-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-b-tertiary-70:focus{
  border-bottom-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-l-tertiary-70:focus{
  border-left-color: rgba(255, 197, 0, 0.7);
}

.focus\:border-tertiary-light-70:focus{
  border-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-t-tertiary-light-70:focus{
  border-top-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-r-tertiary-light-70:focus{
  border-right-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-b-tertiary-light-70:focus{
  border-bottom-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-l-tertiary-light-70:focus{
  border-left-color: rgba(81, 216, 138, 0.7);
}

.focus\:border-tertiary-lighter-70:focus{
  border-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-t-tertiary-lighter-70:focus{
  border-top-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-r-tertiary-lighter-70:focus{
  border-right-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-b-tertiary-lighter-70:focus{
  border-bottom-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-l-tertiary-lighter-70:focus{
  border-left-color: rgba(162, 245, 191, 0.7);
}

.focus\:border-tertiary-lightest-70:focus{
  border-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-t-tertiary-lightest-70:focus{
  border-top-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-r-tertiary-lightest-70:focus{
  border-right-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-b-tertiary-lightest-70:focus{
  border-bottom-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-l-tertiary-lightest-70:focus{
  border-left-color: rgba(227, 252, 236, 0.7);
}

.focus\:border-default-70:focus{
  border-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-t-default-70:focus{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-r-default-70:focus{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-b-default-70:focus{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.focus\:border-l-default-70:focus{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-border-70{
  border-color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:border-t-border-70{
  border-top-color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:border-r-border-70{
  border-right-color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:border-b-border-70{
  border-bottom-color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:border-l-border-70{
  border-left-color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:border-form-70{
  border-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-t-form-70{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-r-form-70{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-b-form-70{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-l-form-70{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-form-active-70{
  border-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-t-form-active-70{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-r-form-active-70{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-b-form-active-70{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-l-form-active-70{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-black-70{
  border-color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:border-t-black-70{
  border-top-color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:border-r-black-70{
  border-right-color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:border-b-black-70{
  border-bottom-color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:border-l-black-70{
  border-left-color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:border-grey-darkest-70{
  border-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-t-grey-darkest-70{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-r-grey-darkest-70{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-b-grey-darkest-70{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-l-grey-darkest-70{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-grey-darker-70{
  border-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-t-grey-darker-70{
  border-top-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-r-grey-darker-70{
  border-right-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-b-grey-darker-70{
  border-bottom-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-l-grey-darker-70{
  border-left-color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:border-grey-dark-70{
  border-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-t-grey-dark-70{
  border-top-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-r-grey-dark-70{
  border-right-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-b-grey-dark-70{
  border-bottom-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-l-grey-dark-70{
  border-left-color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:border-grey-70{
  border-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-t-grey-70{
  border-top-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-r-grey-70{
  border-right-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-b-grey-70{
  border-bottom-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-l-grey-70{
  border-left-color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:border-grey-light-70{
  border-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-t-grey-light-70{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-r-grey-light-70{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-b-grey-light-70{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-l-grey-light-70{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-grey-lighter-70{
  border-color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:border-t-grey-lighter-70{
  border-top-color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:border-r-grey-lighter-70{
  border-right-color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:border-b-grey-lighter-70{
  border-bottom-color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:border-l-grey-lighter-70{
  border-left-color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:border-grey-lightest-70{
  border-color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:border-t-grey-lightest-70{
  border-top-color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:border-r-grey-lightest-70{
  border-right-color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:border-b-grey-lightest-70{
  border-bottom-color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:border-l-grey-lightest-70{
  border-left-color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:border-white-70{
  border-color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:border-t-white-70{
  border-top-color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:border-r-white-70{
  border-right-color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:border-b-white-70{
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:border-l-white-70{
  border-left-color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:border-red-70{
  border-color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:border-t-red-70{
  border-top-color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:border-r-red-70{
  border-right-color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:border-b-red-70{
  border-bottom-color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:border-l-red-70{
  border-left-color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:border-green-70{
  border-color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:border-t-green-70{
  border-top-color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:border-r-green-70{
  border-right-color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:border-b-green-70{
  border-bottom-color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:border-l-green-70{
  border-left-color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:border-blue-70{
  border-color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:border-t-blue-70{
  border-top-color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:border-r-blue-70{
  border-right-color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:border-b-blue-70{
  border-bottom-color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:border-l-blue-70{
  border-left-color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:border-orange-70{
  border-color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:border-t-orange-70{
  border-top-color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:border-r-orange-70{
  border-right-color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:border-b-orange-70{
  border-bottom-color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:border-l-orange-70{
  border-left-color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:border-primary-darkest-70{
  border-color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:border-t-primary-darkest-70{
  border-top-color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:border-r-primary-darkest-70{
  border-right-color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:border-b-primary-darkest-70{
  border-bottom-color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:border-l-primary-darkest-70{
  border-left-color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:border-primary-darker-70{
  border-color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:border-t-primary-darker-70{
  border-top-color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:border-r-primary-darker-70{
  border-right-color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:border-b-primary-darker-70{
  border-bottom-color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:border-l-primary-darker-70{
  border-left-color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:border-primary-dark-70{
  border-color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:border-t-primary-dark-70{
  border-top-color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:border-r-primary-dark-70{
  border-right-color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:border-b-primary-dark-70{
  border-bottom-color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:border-l-primary-dark-70{
  border-left-color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:border-primary-70{
  border-color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:border-t-primary-70{
  border-top-color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:border-r-primary-70{
  border-right-color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:border-b-primary-70{
  border-bottom-color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:border-l-primary-70{
  border-left-color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:border-primary-light-70{
  border-color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:border-t-primary-light-70{
  border-top-color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:border-r-primary-light-70{
  border-right-color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:border-b-primary-light-70{
  border-bottom-color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:border-l-primary-light-70{
  border-left-color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:border-primary-lighter-70{
  border-color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:border-t-primary-lighter-70{
  border-top-color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:border-r-primary-lighter-70{
  border-right-color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:border-b-primary-lighter-70{
  border-bottom-color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:border-l-primary-lighter-70{
  border-left-color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:border-primary-lightest-70{
  border-color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:border-t-primary-lightest-70{
  border-top-color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:border-r-primary-lightest-70{
  border-right-color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:border-b-primary-lightest-70{
  border-bottom-color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:border-l-primary-lightest-70{
  border-left-color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:border-secondary-darkest-70{
  border-color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:border-t-secondary-darkest-70{
  border-top-color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:border-r-secondary-darkest-70{
  border-right-color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:border-b-secondary-darkest-70{
  border-bottom-color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:border-l-secondary-darkest-70{
  border-left-color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:border-secondary-darker-70{
  border-color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:border-t-secondary-darker-70{
  border-top-color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:border-r-secondary-darker-70{
  border-right-color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:border-b-secondary-darker-70{
  border-bottom-color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:border-l-secondary-darker-70{
  border-left-color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:border-secondary-dark-70{
  border-color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:border-t-secondary-dark-70{
  border-top-color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:border-r-secondary-dark-70{
  border-right-color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:border-b-secondary-dark-70{
  border-bottom-color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:border-l-secondary-dark-70{
  border-left-color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:border-secondary-70{
  border-color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:border-t-secondary-70{
  border-top-color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:border-r-secondary-70{
  border-right-color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:border-b-secondary-70{
  border-bottom-color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:border-l-secondary-70{
  border-left-color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:border-secondary-light-70{
  border-color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:border-t-secondary-light-70{
  border-top-color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:border-r-secondary-light-70{
  border-right-color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:border-b-secondary-light-70{
  border-bottom-color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:border-l-secondary-light-70{
  border-left-color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:border-secondary-lighter-70{
  border-color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:border-t-secondary-lighter-70{
  border-top-color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:border-r-secondary-lighter-70{
  border-right-color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:border-b-secondary-lighter-70{
  border-bottom-color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:border-l-secondary-lighter-70{
  border-left-color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:border-secondary-lightest-70{
  border-color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:border-t-secondary-lightest-70{
  border-top-color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:border-r-secondary-lightest-70{
  border-right-color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:border-b-secondary-lightest-70{
  border-bottom-color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:border-l-secondary-lightest-70{
  border-left-color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:border-tertiary-darkest-70{
  border-color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-darkest-70{
  border-top-color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-darkest-70{
  border-right-color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-darkest-70{
  border-bottom-color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-darkest-70{
  border-left-color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:border-tertiary-darker-70{
  border-color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-darker-70{
  border-top-color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-darker-70{
  border-right-color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-darker-70{
  border-bottom-color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-darker-70{
  border-left-color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:border-tertiary-dark-70{
  border-color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-dark-70{
  border-top-color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-dark-70{
  border-right-color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-dark-70{
  border-bottom-color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-dark-70{
  border-left-color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:border-tertiary-70{
  border-color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-70{
  border-top-color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-70{
  border-right-color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-70{
  border-bottom-color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-70{
  border-left-color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:border-tertiary-light-70{
  border-color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-light-70{
  border-top-color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-light-70{
  border-right-color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-light-70{
  border-bottom-color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-light-70{
  border-left-color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:border-tertiary-lighter-70{
  border-color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-lighter-70{
  border-top-color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-lighter-70{
  border-right-color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-lighter-70{
  border-bottom-color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-lighter-70{
  border-left-color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:border-tertiary-lightest-70{
  border-color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:border-t-tertiary-lightest-70{
  border-top-color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:border-r-tertiary-lightest-70{
  border-right-color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:border-b-tertiary-lightest-70{
  border-bottom-color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:border-l-tertiary-lightest-70{
  border-left-color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:border-default-70{
  border-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-t-default-70{
  border-top-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-r-default-70{
  border-right-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-b-default-70{
  border-bottom-color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:border-l-default-70{
  border-left-color: rgba(179, 188, 197, 0.7);
}

.text-border-70{
  color: rgba(230, 235, 245, 0.7);
}

.text-form-70{
  color: rgba(121, 130, 139, 0.7);
}

.text-form-active-70{
  color: rgba(66, 80, 92, 0.7);
}

.text-black-70{
  color: rgba(33, 37, 41, 0.7);
}

.text-grey-darkest-70{
  color: rgba(154, 165, 192, 0.7);
}

.text-grey-darker-70{
  color: rgba(154, 165, 192, 0.7);
}

.text-grey-dark-70{
  color: rgba(66, 80, 92, 0.7);
}

.text-grey-70{
  color: rgba(121, 130, 139, 0.7);
}

.text-grey-light-70{
  color: rgba(179, 188, 197, 0.7);
}

.text-grey-lighter-70{
  color: rgba(222, 228, 233, 0.7);
}

.text-grey-lightest-70{
  color: rgba(244, 246, 249, 0.7);
}

.text-white-70{
  color: rgba(255, 255, 255, 0.7);
}

.text-red-70{
  color: rgba(211, 26, 8, 0.7);
}

.text-green-70{
  color: rgba(102, 187, 8, 0.7);
}

.text-blue-70{
  color: rgba(31, 168, 226, 0.7);
}

.text-orange-70{
  color: rgba(247, 148, 14, 0.7);
}

.text-primary-darkest-70{
  color: rgba(83, 15, 18, 0.7);
}

.text-primary-darker-70{
  color: rgba(124, 23, 27, 0.7);
}

.text-primary-dark-70{
  color: rgba(166, 30, 36, 0.7);
}

.text-primary-70{
  color: rgba(207, 38, 45, 0.7);
}

.text-primary-light-70{
  color: rgba(217, 81, 87, 0.7);
}

.text-primary-lighter-70{
  color: rgba(226, 125, 129, 0.7);
}

.text-primary-lightest-70{
  color: rgba(236, 168, 171, 0.7);
}

.text-secondary-darkest-70{
  color: rgba(62, 69, 37, 0.7);
}

.text-secondary-darker-70{
  color: rgba(94, 104, 55, 0.7);
}

.text-secondary-dark-70{
  color: rgba(125, 138, 74, 0.7);
}

.text-secondary-70{
  color: rgba(156, 173, 92, 0.7);
}

.text-secondary-light-70{
  color: rgba(176, 189, 125, 0.7);
}

.text-secondary-lighter-70{
  color: rgba(196, 206, 157, 0.7);
}

.text-secondary-lightest-70{
  color: rgba(215, 222, 190, 0.7);
}

.text-tertiary-darkest-70{
  color: rgba(15, 47, 33, 0.7);
}

.text-tertiary-darker-70{
  color: rgba(26, 71, 49, 0.7);
}

.text-tertiary-dark-70{
  color: rgba(31, 157, 85, 0.7);
}

.text-tertiary-70{
  color: rgba(255, 197, 0, 0.7);
}

.text-tertiary-light-70{
  color: rgba(81, 216, 138, 0.7);
}

.text-tertiary-lighter-70{
  color: rgba(162, 245, 191, 0.7);
}

.text-tertiary-lightest-70{
  color: rgba(227, 252, 236, 0.7);
}

.hover\:text-border-70:hover{
  color: rgba(230, 235, 245, 0.7);
}

.hover\:text-form-70:hover{
  color: rgba(121, 130, 139, 0.7);
}

.hover\:text-form-active-70:hover{
  color: rgba(66, 80, 92, 0.7);
}

.hover\:text-black-70:hover{
  color: rgba(33, 37, 41, 0.7);
}

.hover\:text-grey-darkest-70:hover{
  color: rgba(154, 165, 192, 0.7);
}

.hover\:text-grey-darker-70:hover{
  color: rgba(154, 165, 192, 0.7);
}

.hover\:text-grey-dark-70:hover{
  color: rgba(66, 80, 92, 0.7);
}

.hover\:text-grey-70:hover{
  color: rgba(121, 130, 139, 0.7);
}

.hover\:text-grey-light-70:hover{
  color: rgba(179, 188, 197, 0.7);
}

.hover\:text-grey-lighter-70:hover{
  color: rgba(222, 228, 233, 0.7);
}

.hover\:text-grey-lightest-70:hover{
  color: rgba(244, 246, 249, 0.7);
}

.hover\:text-white-70:hover{
  color: rgba(255, 255, 255, 0.7);
}

.hover\:text-red-70:hover{
  color: rgba(211, 26, 8, 0.7);
}

.hover\:text-green-70:hover{
  color: rgba(102, 187, 8, 0.7);
}

.hover\:text-blue-70:hover{
  color: rgba(31, 168, 226, 0.7);
}

.hover\:text-orange-70:hover{
  color: rgba(247, 148, 14, 0.7);
}

.hover\:text-primary-darkest-70:hover{
  color: rgba(83, 15, 18, 0.7);
}

.hover\:text-primary-darker-70:hover{
  color: rgba(124, 23, 27, 0.7);
}

.hover\:text-primary-dark-70:hover{
  color: rgba(166, 30, 36, 0.7);
}

.hover\:text-primary-70:hover{
  color: rgba(207, 38, 45, 0.7);
}

.hover\:text-primary-light-70:hover{
  color: rgba(217, 81, 87, 0.7);
}

.hover\:text-primary-lighter-70:hover{
  color: rgba(226, 125, 129, 0.7);
}

.hover\:text-primary-lightest-70:hover{
  color: rgba(236, 168, 171, 0.7);
}

.hover\:text-secondary-darkest-70:hover{
  color: rgba(62, 69, 37, 0.7);
}

.hover\:text-secondary-darker-70:hover{
  color: rgba(94, 104, 55, 0.7);
}

.hover\:text-secondary-dark-70:hover{
  color: rgba(125, 138, 74, 0.7);
}

.hover\:text-secondary-70:hover{
  color: rgba(156, 173, 92, 0.7);
}

.hover\:text-secondary-light-70:hover{
  color: rgba(176, 189, 125, 0.7);
}

.hover\:text-secondary-lighter-70:hover{
  color: rgba(196, 206, 157, 0.7);
}

.hover\:text-secondary-lightest-70:hover{
  color: rgba(215, 222, 190, 0.7);
}

.hover\:text-tertiary-darkest-70:hover{
  color: rgba(15, 47, 33, 0.7);
}

.hover\:text-tertiary-darker-70:hover{
  color: rgba(26, 71, 49, 0.7);
}

.hover\:text-tertiary-dark-70:hover{
  color: rgba(31, 157, 85, 0.7);
}

.hover\:text-tertiary-70:hover{
  color: rgba(255, 197, 0, 0.7);
}

.hover\:text-tertiary-light-70:hover{
  color: rgba(81, 216, 138, 0.7);
}

.hover\:text-tertiary-lighter-70:hover{
  color: rgba(162, 245, 191, 0.7);
}

.hover\:text-tertiary-lightest-70:hover{
  color: rgba(227, 252, 236, 0.7);
}

.focus\:text-border-70:focus{
  color: rgba(230, 235, 245, 0.7);
}

.focus\:text-form-70:focus{
  color: rgba(121, 130, 139, 0.7);
}

.focus\:text-form-active-70:focus{
  color: rgba(66, 80, 92, 0.7);
}

.focus\:text-black-70:focus{
  color: rgba(33, 37, 41, 0.7);
}

.focus\:text-grey-darkest-70:focus{
  color: rgba(154, 165, 192, 0.7);
}

.focus\:text-grey-darker-70:focus{
  color: rgba(154, 165, 192, 0.7);
}

.focus\:text-grey-dark-70:focus{
  color: rgba(66, 80, 92, 0.7);
}

.focus\:text-grey-70:focus{
  color: rgba(121, 130, 139, 0.7);
}

.focus\:text-grey-light-70:focus{
  color: rgba(179, 188, 197, 0.7);
}

.focus\:text-grey-lighter-70:focus{
  color: rgba(222, 228, 233, 0.7);
}

.focus\:text-grey-lightest-70:focus{
  color: rgba(244, 246, 249, 0.7);
}

.focus\:text-white-70:focus{
  color: rgba(255, 255, 255, 0.7);
}

.focus\:text-red-70:focus{
  color: rgba(211, 26, 8, 0.7);
}

.focus\:text-green-70:focus{
  color: rgba(102, 187, 8, 0.7);
}

.focus\:text-blue-70:focus{
  color: rgba(31, 168, 226, 0.7);
}

.focus\:text-orange-70:focus{
  color: rgba(247, 148, 14, 0.7);
}

.focus\:text-primary-darkest-70:focus{
  color: rgba(83, 15, 18, 0.7);
}

.focus\:text-primary-darker-70:focus{
  color: rgba(124, 23, 27, 0.7);
}

.focus\:text-primary-dark-70:focus{
  color: rgba(166, 30, 36, 0.7);
}

.focus\:text-primary-70:focus{
  color: rgba(207, 38, 45, 0.7);
}

.focus\:text-primary-light-70:focus{
  color: rgba(217, 81, 87, 0.7);
}

.focus\:text-primary-lighter-70:focus{
  color: rgba(226, 125, 129, 0.7);
}

.focus\:text-primary-lightest-70:focus{
  color: rgba(236, 168, 171, 0.7);
}

.focus\:text-secondary-darkest-70:focus{
  color: rgba(62, 69, 37, 0.7);
}

.focus\:text-secondary-darker-70:focus{
  color: rgba(94, 104, 55, 0.7);
}

.focus\:text-secondary-dark-70:focus{
  color: rgba(125, 138, 74, 0.7);
}

.focus\:text-secondary-70:focus{
  color: rgba(156, 173, 92, 0.7);
}

.focus\:text-secondary-light-70:focus{
  color: rgba(176, 189, 125, 0.7);
}

.focus\:text-secondary-lighter-70:focus{
  color: rgba(196, 206, 157, 0.7);
}

.focus\:text-secondary-lightest-70:focus{
  color: rgba(215, 222, 190, 0.7);
}

.focus\:text-tertiary-darkest-70:focus{
  color: rgba(15, 47, 33, 0.7);
}

.focus\:text-tertiary-darker-70:focus{
  color: rgba(26, 71, 49, 0.7);
}

.focus\:text-tertiary-dark-70:focus{
  color: rgba(31, 157, 85, 0.7);
}

.focus\:text-tertiary-70:focus{
  color: rgba(255, 197, 0, 0.7);
}

.focus\:text-tertiary-light-70:focus{
  color: rgba(81, 216, 138, 0.7);
}

.focus\:text-tertiary-lighter-70:focus{
  color: rgba(162, 245, 191, 0.7);
}

.focus\:text-tertiary-lightest-70:focus{
  color: rgba(227, 252, 236, 0.7);
}

.focus\:text-border-70:focus{
  color: rgba(230, 235, 245, 0.7);
}

.focus\:text-form-70:focus{
  color: rgba(121, 130, 139, 0.7);
}

.focus\:text-form-active-70:focus{
  color: rgba(66, 80, 92, 0.7);
}

.focus\:text-black-70:focus{
  color: rgba(33, 37, 41, 0.7);
}

.focus\:text-grey-darkest-70:focus{
  color: rgba(154, 165, 192, 0.7);
}

.focus\:text-grey-darker-70:focus{
  color: rgba(154, 165, 192, 0.7);
}

.focus\:text-grey-dark-70:focus{
  color: rgba(66, 80, 92, 0.7);
}

.focus\:text-grey-70:focus{
  color: rgba(121, 130, 139, 0.7);
}

.focus\:text-grey-light-70:focus{
  color: rgba(179, 188, 197, 0.7);
}

.focus\:text-grey-lighter-70:focus{
  color: rgba(222, 228, 233, 0.7);
}

.focus\:text-grey-lightest-70:focus{
  color: rgba(244, 246, 249, 0.7);
}

.focus\:text-white-70:focus{
  color: rgba(255, 255, 255, 0.7);
}

.focus\:text-red-70:focus{
  color: rgba(211, 26, 8, 0.7);
}

.focus\:text-green-70:focus{
  color: rgba(102, 187, 8, 0.7);
}

.focus\:text-blue-70:focus{
  color: rgba(31, 168, 226, 0.7);
}

.focus\:text-orange-70:focus{
  color: rgba(247, 148, 14, 0.7);
}

.focus\:text-primary-darkest-70:focus{
  color: rgba(83, 15, 18, 0.7);
}

.focus\:text-primary-darker-70:focus{
  color: rgba(124, 23, 27, 0.7);
}

.focus\:text-primary-dark-70:focus{
  color: rgba(166, 30, 36, 0.7);
}

.focus\:text-primary-70:focus{
  color: rgba(207, 38, 45, 0.7);
}

.focus\:text-primary-light-70:focus{
  color: rgba(217, 81, 87, 0.7);
}

.focus\:text-primary-lighter-70:focus{
  color: rgba(226, 125, 129, 0.7);
}

.focus\:text-primary-lightest-70:focus{
  color: rgba(236, 168, 171, 0.7);
}

.focus\:text-secondary-darkest-70:focus{
  color: rgba(62, 69, 37, 0.7);
}

.focus\:text-secondary-darker-70:focus{
  color: rgba(94, 104, 55, 0.7);
}

.focus\:text-secondary-dark-70:focus{
  color: rgba(125, 138, 74, 0.7);
}

.focus\:text-secondary-70:focus{
  color: rgba(156, 173, 92, 0.7);
}

.focus\:text-secondary-light-70:focus{
  color: rgba(176, 189, 125, 0.7);
}

.focus\:text-secondary-lighter-70:focus{
  color: rgba(196, 206, 157, 0.7);
}

.focus\:text-secondary-lightest-70:focus{
  color: rgba(215, 222, 190, 0.7);
}

.focus\:text-tertiary-darkest-70:focus{
  color: rgba(15, 47, 33, 0.7);
}

.focus\:text-tertiary-darker-70:focus{
  color: rgba(26, 71, 49, 0.7);
}

.focus\:text-tertiary-dark-70:focus{
  color: rgba(31, 157, 85, 0.7);
}

.focus\:text-tertiary-70:focus{
  color: rgba(255, 197, 0, 0.7);
}

.focus\:text-tertiary-light-70:focus{
  color: rgba(81, 216, 138, 0.7);
}

.focus\:text-tertiary-lighter-70:focus{
  color: rgba(162, 245, 191, 0.7);
}

.focus\:text-tertiary-lightest-70:focus{
  color: rgba(227, 252, 236, 0.7);
}

.group:hover .group-hover\:text-border-70{
  color: rgba(230, 235, 245, 0.7);
}

.group:hover .group-hover\:text-form-70{
  color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:text-form-active-70{
  color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:text-black-70{
  color: rgba(33, 37, 41, 0.7);
}

.group:hover .group-hover\:text-grey-darkest-70{
  color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:text-grey-darker-70{
  color: rgba(154, 165, 192, 0.7);
}

.group:hover .group-hover\:text-grey-dark-70{
  color: rgba(66, 80, 92, 0.7);
}

.group:hover .group-hover\:text-grey-70{
  color: rgba(121, 130, 139, 0.7);
}

.group:hover .group-hover\:text-grey-light-70{
  color: rgba(179, 188, 197, 0.7);
}

.group:hover .group-hover\:text-grey-lighter-70{
  color: rgba(222, 228, 233, 0.7);
}

.group:hover .group-hover\:text-grey-lightest-70{
  color: rgba(244, 246, 249, 0.7);
}

.group:hover .group-hover\:text-white-70{
  color: rgba(255, 255, 255, 0.7);
}

.group:hover .group-hover\:text-red-70{
  color: rgba(211, 26, 8, 0.7);
}

.group:hover .group-hover\:text-green-70{
  color: rgba(102, 187, 8, 0.7);
}

.group:hover .group-hover\:text-blue-70{
  color: rgba(31, 168, 226, 0.7);
}

.group:hover .group-hover\:text-orange-70{
  color: rgba(247, 148, 14, 0.7);
}

.group:hover .group-hover\:text-primary-darkest-70{
  color: rgba(83, 15, 18, 0.7);
}

.group:hover .group-hover\:text-primary-darker-70{
  color: rgba(124, 23, 27, 0.7);
}

.group:hover .group-hover\:text-primary-dark-70{
  color: rgba(166, 30, 36, 0.7);
}

.group:hover .group-hover\:text-primary-70{
  color: rgba(207, 38, 45, 0.7);
}

.group:hover .group-hover\:text-primary-light-70{
  color: rgba(217, 81, 87, 0.7);
}

.group:hover .group-hover\:text-primary-lighter-70{
  color: rgba(226, 125, 129, 0.7);
}

.group:hover .group-hover\:text-primary-lightest-70{
  color: rgba(236, 168, 171, 0.7);
}

.group:hover .group-hover\:text-secondary-darkest-70{
  color: rgba(62, 69, 37, 0.7);
}

.group:hover .group-hover\:text-secondary-darker-70{
  color: rgba(94, 104, 55, 0.7);
}

.group:hover .group-hover\:text-secondary-dark-70{
  color: rgba(125, 138, 74, 0.7);
}

.group:hover .group-hover\:text-secondary-70{
  color: rgba(156, 173, 92, 0.7);
}

.group:hover .group-hover\:text-secondary-light-70{
  color: rgba(176, 189, 125, 0.7);
}

.group:hover .group-hover\:text-secondary-lighter-70{
  color: rgba(196, 206, 157, 0.7);
}

.group:hover .group-hover\:text-secondary-lightest-70{
  color: rgba(215, 222, 190, 0.7);
}

.group:hover .group-hover\:text-tertiary-darkest-70{
  color: rgba(15, 47, 33, 0.7);
}

.group:hover .group-hover\:text-tertiary-darker-70{
  color: rgba(26, 71, 49, 0.7);
}

.group:hover .group-hover\:text-tertiary-dark-70{
  color: rgba(31, 157, 85, 0.7);
}

.group:hover .group-hover\:text-tertiary-70{
  color: rgba(255, 197, 0, 0.7);
}

.group:hover .group-hover\:text-tertiary-light-70{
  color: rgba(81, 216, 138, 0.7);
}

.group:hover .group-hover\:text-tertiary-lighter-70{
  color: rgba(162, 245, 191, 0.7);
}

.group:hover .group-hover\:text-tertiary-lightest-70{
  color: rgba(227, 252, 236, 0.7);
}

.bg-border-90{
  background-color: rgba(230, 235, 245, 0.9);
}

.bg-form-90{
  background-color: rgba(121, 130, 139, 0.9);
}

.bg-form-active-90{
  background-color: rgba(66, 80, 92, 0.9);
}

.bg-black-90{
  background-color: rgba(33, 37, 41, 0.9);
}

.bg-grey-darkest-90{
  background-color: rgba(154, 165, 192, 0.9);
}

.bg-grey-darker-90{
  background-color: rgba(154, 165, 192, 0.9);
}

.bg-grey-dark-90{
  background-color: rgba(66, 80, 92, 0.9);
}

.bg-grey-90{
  background-color: rgba(121, 130, 139, 0.9);
}

.bg-grey-light-90{
  background-color: rgba(179, 188, 197, 0.9);
}

.bg-grey-lighter-90{
  background-color: rgba(222, 228, 233, 0.9);
}

.bg-grey-lightest-90{
  background-color: rgba(244, 246, 249, 0.9);
}

.bg-white-90{
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-red-90{
  background-color: rgba(211, 26, 8, 0.9);
}

.bg-green-90{
  background-color: rgba(102, 187, 8, 0.9);
}

.bg-blue-90{
  background-color: rgba(31, 168, 226, 0.9);
}

.bg-orange-90{
  background-color: rgba(247, 148, 14, 0.9);
}

.bg-primary-darkest-90{
  background-color: rgba(83, 15, 18, 0.9);
}

.bg-primary-darker-90{
  background-color: rgba(124, 23, 27, 0.9);
}

.bg-primary-dark-90{
  background-color: rgba(166, 30, 36, 0.9);
}

.bg-primary-90{
  background-color: rgba(207, 38, 45, 0.9);
}

.bg-primary-light-90{
  background-color: rgba(217, 81, 87, 0.9);
}

.bg-primary-lighter-90{
  background-color: rgba(226, 125, 129, 0.9);
}

.bg-primary-lightest-90{
  background-color: rgba(236, 168, 171, 0.9);
}

.bg-secondary-darkest-90{
  background-color: rgba(62, 69, 37, 0.9);
}

.bg-secondary-darker-90{
  background-color: rgba(94, 104, 55, 0.9);
}

.bg-secondary-dark-90{
  background-color: rgba(125, 138, 74, 0.9);
}

.bg-secondary-90{
  background-color: rgba(156, 173, 92, 0.9);
}

.bg-secondary-light-90{
  background-color: rgba(176, 189, 125, 0.9);
}

.bg-secondary-lighter-90{
  background-color: rgba(196, 206, 157, 0.9);
}

.bg-secondary-lightest-90{
  background-color: rgba(215, 222, 190, 0.9);
}

.bg-tertiary-darkest-90{
  background-color: rgba(15, 47, 33, 0.9);
}

.bg-tertiary-darker-90{
  background-color: rgba(26, 71, 49, 0.9);
}

.bg-tertiary-dark-90{
  background-color: rgba(31, 157, 85, 0.9);
}

.bg-tertiary-90{
  background-color: rgba(255, 197, 0, 0.9);
}

.bg-tertiary-light-90{
  background-color: rgba(81, 216, 138, 0.9);
}

.bg-tertiary-lighter-90{
  background-color: rgba(162, 245, 191, 0.9);
}

.bg-tertiary-lightest-90{
  background-color: rgba(227, 252, 236, 0.9);
}

.hover\:bg-border-90:hover{
  background-color: rgba(230, 235, 245, 0.9);
}

.hover\:bg-form-90:hover{
  background-color: rgba(121, 130, 139, 0.9);
}

.hover\:bg-form-active-90:hover{
  background-color: rgba(66, 80, 92, 0.9);
}

.hover\:bg-black-90:hover{
  background-color: rgba(33, 37, 41, 0.9);
}

.hover\:bg-grey-darkest-90:hover{
  background-color: rgba(154, 165, 192, 0.9);
}

.hover\:bg-grey-darker-90:hover{
  background-color: rgba(154, 165, 192, 0.9);
}

.hover\:bg-grey-dark-90:hover{
  background-color: rgba(66, 80, 92, 0.9);
}

.hover\:bg-grey-90:hover{
  background-color: rgba(121, 130, 139, 0.9);
}

.hover\:bg-grey-light-90:hover{
  background-color: rgba(179, 188, 197, 0.9);
}

.hover\:bg-grey-lighter-90:hover{
  background-color: rgba(222, 228, 233, 0.9);
}

.hover\:bg-grey-lightest-90:hover{
  background-color: rgba(244, 246, 249, 0.9);
}

.hover\:bg-white-90:hover{
  background-color: rgba(255, 255, 255, 0.9);
}

.hover\:bg-red-90:hover{
  background-color: rgba(211, 26, 8, 0.9);
}

.hover\:bg-green-90:hover{
  background-color: rgba(102, 187, 8, 0.9);
}

.hover\:bg-blue-90:hover{
  background-color: rgba(31, 168, 226, 0.9);
}

.hover\:bg-orange-90:hover{
  background-color: rgba(247, 148, 14, 0.9);
}

.hover\:bg-primary-darkest-90:hover{
  background-color: rgba(83, 15, 18, 0.9);
}

.hover\:bg-primary-darker-90:hover{
  background-color: rgba(124, 23, 27, 0.9);
}

.hover\:bg-primary-dark-90:hover{
  background-color: rgba(166, 30, 36, 0.9);
}

.hover\:bg-primary-90:hover{
  background-color: rgba(207, 38, 45, 0.9);
}

.hover\:bg-primary-light-90:hover{
  background-color: rgba(217, 81, 87, 0.9);
}

.hover\:bg-primary-lighter-90:hover{
  background-color: rgba(226, 125, 129, 0.9);
}

.hover\:bg-primary-lightest-90:hover{
  background-color: rgba(236, 168, 171, 0.9);
}

.hover\:bg-secondary-darkest-90:hover{
  background-color: rgba(62, 69, 37, 0.9);
}

.hover\:bg-secondary-darker-90:hover{
  background-color: rgba(94, 104, 55, 0.9);
}

.hover\:bg-secondary-dark-90:hover{
  background-color: rgba(125, 138, 74, 0.9);
}

.hover\:bg-secondary-90:hover{
  background-color: rgba(156, 173, 92, 0.9);
}

.hover\:bg-secondary-light-90:hover{
  background-color: rgba(176, 189, 125, 0.9);
}

.hover\:bg-secondary-lighter-90:hover{
  background-color: rgba(196, 206, 157, 0.9);
}

.hover\:bg-secondary-lightest-90:hover{
  background-color: rgba(215, 222, 190, 0.9);
}

.hover\:bg-tertiary-darkest-90:hover{
  background-color: rgba(15, 47, 33, 0.9);
}

.hover\:bg-tertiary-darker-90:hover{
  background-color: rgba(26, 71, 49, 0.9);
}

.hover\:bg-tertiary-dark-90:hover{
  background-color: rgba(31, 157, 85, 0.9);
}

.hover\:bg-tertiary-90:hover{
  background-color: rgba(255, 197, 0, 0.9);
}

.hover\:bg-tertiary-light-90:hover{
  background-color: rgba(81, 216, 138, 0.9);
}

.hover\:bg-tertiary-lighter-90:hover{
  background-color: rgba(162, 245, 191, 0.9);
}

.hover\:bg-tertiary-lightest-90:hover{
  background-color: rgba(227, 252, 236, 0.9);
}

.focus\:bg-border-90:focus{
  background-color: rgba(230, 235, 245, 0.9);
}

.focus\:bg-form-90:focus{
  background-color: rgba(121, 130, 139, 0.9);
}

.focus\:bg-form-active-90:focus{
  background-color: rgba(66, 80, 92, 0.9);
}

.focus\:bg-black-90:focus{
  background-color: rgba(33, 37, 41, 0.9);
}

.focus\:bg-grey-darkest-90:focus{
  background-color: rgba(154, 165, 192, 0.9);
}

.focus\:bg-grey-darker-90:focus{
  background-color: rgba(154, 165, 192, 0.9);
}

.focus\:bg-grey-dark-90:focus{
  background-color: rgba(66, 80, 92, 0.9);
}

.focus\:bg-grey-90:focus{
  background-color: rgba(121, 130, 139, 0.9);
}

.focus\:bg-grey-light-90:focus{
  background-color: rgba(179, 188, 197, 0.9);
}

.focus\:bg-grey-lighter-90:focus{
  background-color: rgba(222, 228, 233, 0.9);
}

.focus\:bg-grey-lightest-90:focus{
  background-color: rgba(244, 246, 249, 0.9);
}

.focus\:bg-white-90:focus{
  background-color: rgba(255, 255, 255, 0.9);
}

.focus\:bg-red-90:focus{
  background-color: rgba(211, 26, 8, 0.9);
}

.focus\:bg-green-90:focus{
  background-color: rgba(102, 187, 8, 0.9);
}

.focus\:bg-blue-90:focus{
  background-color: rgba(31, 168, 226, 0.9);
}

.focus\:bg-orange-90:focus{
  background-color: rgba(247, 148, 14, 0.9);
}

.focus\:bg-primary-darkest-90:focus{
  background-color: rgba(83, 15, 18, 0.9);
}

.focus\:bg-primary-darker-90:focus{
  background-color: rgba(124, 23, 27, 0.9);
}

.focus\:bg-primary-dark-90:focus{
  background-color: rgba(166, 30, 36, 0.9);
}

.focus\:bg-primary-90:focus{
  background-color: rgba(207, 38, 45, 0.9);
}

.focus\:bg-primary-light-90:focus{
  background-color: rgba(217, 81, 87, 0.9);
}

.focus\:bg-primary-lighter-90:focus{
  background-color: rgba(226, 125, 129, 0.9);
}

.focus\:bg-primary-lightest-90:focus{
  background-color: rgba(236, 168, 171, 0.9);
}

.focus\:bg-secondary-darkest-90:focus{
  background-color: rgba(62, 69, 37, 0.9);
}

.focus\:bg-secondary-darker-90:focus{
  background-color: rgba(94, 104, 55, 0.9);
}

.focus\:bg-secondary-dark-90:focus{
  background-color: rgba(125, 138, 74, 0.9);
}

.focus\:bg-secondary-90:focus{
  background-color: rgba(156, 173, 92, 0.9);
}

.focus\:bg-secondary-light-90:focus{
  background-color: rgba(176, 189, 125, 0.9);
}

.focus\:bg-secondary-lighter-90:focus{
  background-color: rgba(196, 206, 157, 0.9);
}

.focus\:bg-secondary-lightest-90:focus{
  background-color: rgba(215, 222, 190, 0.9);
}

.focus\:bg-tertiary-darkest-90:focus{
  background-color: rgba(15, 47, 33, 0.9);
}

.focus\:bg-tertiary-darker-90:focus{
  background-color: rgba(26, 71, 49, 0.9);
}

.focus\:bg-tertiary-dark-90:focus{
  background-color: rgba(31, 157, 85, 0.9);
}

.focus\:bg-tertiary-90:focus{
  background-color: rgba(255, 197, 0, 0.9);
}

.focus\:bg-tertiary-light-90:focus{
  background-color: rgba(81, 216, 138, 0.9);
}

.focus\:bg-tertiary-lighter-90:focus{
  background-color: rgba(162, 245, 191, 0.9);
}

.focus\:bg-tertiary-lightest-90:focus{
  background-color: rgba(227, 252, 236, 0.9);
}

.focus\:bg-border-90:focus{
  background-color: rgba(230, 235, 245, 0.9);
}

.focus\:bg-form-90:focus{
  background-color: rgba(121, 130, 139, 0.9);
}

.focus\:bg-form-active-90:focus{
  background-color: rgba(66, 80, 92, 0.9);
}

.focus\:bg-black-90:focus{
  background-color: rgba(33, 37, 41, 0.9);
}

.focus\:bg-grey-darkest-90:focus{
  background-color: rgba(154, 165, 192, 0.9);
}

.focus\:bg-grey-darker-90:focus{
  background-color: rgba(154, 165, 192, 0.9);
}

.focus\:bg-grey-dark-90:focus{
  background-color: rgba(66, 80, 92, 0.9);
}

.focus\:bg-grey-90:focus{
  background-color: rgba(121, 130, 139, 0.9);
}

.focus\:bg-grey-light-90:focus{
  background-color: rgba(179, 188, 197, 0.9);
}

.focus\:bg-grey-lighter-90:focus{
  background-color: rgba(222, 228, 233, 0.9);
}

.focus\:bg-grey-lightest-90:focus{
  background-color: rgba(244, 246, 249, 0.9);
}

.focus\:bg-white-90:focus{
  background-color: rgba(255, 255, 255, 0.9);
}

.focus\:bg-red-90:focus{
  background-color: rgba(211, 26, 8, 0.9);
}

.focus\:bg-green-90:focus{
  background-color: rgba(102, 187, 8, 0.9);
}

.focus\:bg-blue-90:focus{
  background-color: rgba(31, 168, 226, 0.9);
}

.focus\:bg-orange-90:focus{
  background-color: rgba(247, 148, 14, 0.9);
}

.focus\:bg-primary-darkest-90:focus{
  background-color: rgba(83, 15, 18, 0.9);
}

.focus\:bg-primary-darker-90:focus{
  background-color: rgba(124, 23, 27, 0.9);
}

.focus\:bg-primary-dark-90:focus{
  background-color: rgba(166, 30, 36, 0.9);
}

.focus\:bg-primary-90:focus{
  background-color: rgba(207, 38, 45, 0.9);
}

.focus\:bg-primary-light-90:focus{
  background-color: rgba(217, 81, 87, 0.9);
}

.focus\:bg-primary-lighter-90:focus{
  background-color: rgba(226, 125, 129, 0.9);
}

.focus\:bg-primary-lightest-90:focus{
  background-color: rgba(236, 168, 171, 0.9);
}

.focus\:bg-secondary-darkest-90:focus{
  background-color: rgba(62, 69, 37, 0.9);
}

.focus\:bg-secondary-darker-90:focus{
  background-color: rgba(94, 104, 55, 0.9);
}

.focus\:bg-secondary-dark-90:focus{
  background-color: rgba(125, 138, 74, 0.9);
}

.focus\:bg-secondary-90:focus{
  background-color: rgba(156, 173, 92, 0.9);
}

.focus\:bg-secondary-light-90:focus{
  background-color: rgba(176, 189, 125, 0.9);
}

.focus\:bg-secondary-lighter-90:focus{
  background-color: rgba(196, 206, 157, 0.9);
}

.focus\:bg-secondary-lightest-90:focus{
  background-color: rgba(215, 222, 190, 0.9);
}

.focus\:bg-tertiary-darkest-90:focus{
  background-color: rgba(15, 47, 33, 0.9);
}

.focus\:bg-tertiary-darker-90:focus{
  background-color: rgba(26, 71, 49, 0.9);
}

.focus\:bg-tertiary-dark-90:focus{
  background-color: rgba(31, 157, 85, 0.9);
}

.focus\:bg-tertiary-90:focus{
  background-color: rgba(255, 197, 0, 0.9);
}

.focus\:bg-tertiary-light-90:focus{
  background-color: rgba(81, 216, 138, 0.9);
}

.focus\:bg-tertiary-lighter-90:focus{
  background-color: rgba(162, 245, 191, 0.9);
}

.focus\:bg-tertiary-lightest-90:focus{
  background-color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:bg-border-90{
  background-color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:bg-form-90{
  background-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:bg-form-active-90{
  background-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:bg-black-90{
  background-color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:bg-grey-darkest-90{
  background-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:bg-grey-darker-90{
  background-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:bg-grey-dark-90{
  background-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:bg-grey-90{
  background-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:bg-grey-light-90{
  background-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:bg-grey-lighter-90{
  background-color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:bg-grey-lightest-90{
  background-color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:bg-white-90{
  background-color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:bg-red-90{
  background-color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:bg-green-90{
  background-color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:bg-blue-90{
  background-color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:bg-orange-90{
  background-color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:bg-primary-darkest-90{
  background-color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:bg-primary-darker-90{
  background-color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:bg-primary-dark-90{
  background-color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:bg-primary-90{
  background-color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:bg-primary-light-90{
  background-color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:bg-primary-lighter-90{
  background-color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:bg-primary-lightest-90{
  background-color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:bg-secondary-darkest-90{
  background-color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:bg-secondary-darker-90{
  background-color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:bg-secondary-dark-90{
  background-color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:bg-secondary-90{
  background-color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:bg-secondary-light-90{
  background-color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:bg-secondary-lighter-90{
  background-color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:bg-secondary-lightest-90{
  background-color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:bg-tertiary-darkest-90{
  background-color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:bg-tertiary-darker-90{
  background-color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:bg-tertiary-dark-90{
  background-color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:bg-tertiary-90{
  background-color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:bg-tertiary-light-90{
  background-color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:bg-tertiary-lighter-90{
  background-color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:bg-tertiary-lightest-90{
  background-color: rgba(227, 252, 236, 0.9);
}

.border-border-90{
  border-color: rgba(230, 235, 245, 0.9);
}

.border-t-border-90{
  border-top-color: rgba(230, 235, 245, 0.9);
}

.border-r-border-90{
  border-right-color: rgba(230, 235, 245, 0.9);
}

.border-b-border-90{
  border-bottom-color: rgba(230, 235, 245, 0.9);
}

.border-l-border-90{
  border-left-color: rgba(230, 235, 245, 0.9);
}

.border-form-90{
  border-color: rgba(121, 130, 139, 0.9);
}

.border-t-form-90{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.border-r-form-90{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.border-b-form-90{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.border-l-form-90{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.border-form-active-90{
  border-color: rgba(66, 80, 92, 0.9);
}

.border-t-form-active-90{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.border-r-form-active-90{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.border-b-form-active-90{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.border-l-form-active-90{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.border-black-90{
  border-color: rgba(33, 37, 41, 0.9);
}

.border-t-black-90{
  border-top-color: rgba(33, 37, 41, 0.9);
}

.border-r-black-90{
  border-right-color: rgba(33, 37, 41, 0.9);
}

.border-b-black-90{
  border-bottom-color: rgba(33, 37, 41, 0.9);
}

.border-l-black-90{
  border-left-color: rgba(33, 37, 41, 0.9);
}

.border-grey-darkest-90{
  border-color: rgba(154, 165, 192, 0.9);
}

.border-t-grey-darkest-90{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.border-r-grey-darkest-90{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.border-b-grey-darkest-90{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.border-l-grey-darkest-90{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.border-grey-darker-90{
  border-color: rgba(154, 165, 192, 0.9);
}

.border-t-grey-darker-90{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.border-r-grey-darker-90{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.border-b-grey-darker-90{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.border-l-grey-darker-90{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.border-grey-dark-90{
  border-color: rgba(66, 80, 92, 0.9);
}

.border-t-grey-dark-90{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.border-r-grey-dark-90{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.border-b-grey-dark-90{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.border-l-grey-dark-90{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.border-grey-90{
  border-color: rgba(121, 130, 139, 0.9);
}

.border-t-grey-90{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.border-r-grey-90{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.border-b-grey-90{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.border-l-grey-90{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.border-grey-light-90{
  border-color: rgba(179, 188, 197, 0.9);
}

.border-t-grey-light-90{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.border-r-grey-light-90{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.border-b-grey-light-90{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.border-l-grey-light-90{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.border-grey-lighter-90{
  border-color: rgba(222, 228, 233, 0.9);
}

.border-t-grey-lighter-90{
  border-top-color: rgba(222, 228, 233, 0.9);
}

.border-r-grey-lighter-90{
  border-right-color: rgba(222, 228, 233, 0.9);
}

.border-b-grey-lighter-90{
  border-bottom-color: rgba(222, 228, 233, 0.9);
}

.border-l-grey-lighter-90{
  border-left-color: rgba(222, 228, 233, 0.9);
}

.border-grey-lightest-90{
  border-color: rgba(244, 246, 249, 0.9);
}

.border-t-grey-lightest-90{
  border-top-color: rgba(244, 246, 249, 0.9);
}

.border-r-grey-lightest-90{
  border-right-color: rgba(244, 246, 249, 0.9);
}

.border-b-grey-lightest-90{
  border-bottom-color: rgba(244, 246, 249, 0.9);
}

.border-l-grey-lightest-90{
  border-left-color: rgba(244, 246, 249, 0.9);
}

.border-white-90{
  border-color: rgba(255, 255, 255, 0.9);
}

.border-t-white-90{
  border-top-color: rgba(255, 255, 255, 0.9);
}

.border-r-white-90{
  border-right-color: rgba(255, 255, 255, 0.9);
}

.border-b-white-90{
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.border-l-white-90{
  border-left-color: rgba(255, 255, 255, 0.9);
}

.border-red-90{
  border-color: rgba(211, 26, 8, 0.9);
}

.border-t-red-90{
  border-top-color: rgba(211, 26, 8, 0.9);
}

.border-r-red-90{
  border-right-color: rgba(211, 26, 8, 0.9);
}

.border-b-red-90{
  border-bottom-color: rgba(211, 26, 8, 0.9);
}

.border-l-red-90{
  border-left-color: rgba(211, 26, 8, 0.9);
}

.border-green-90{
  border-color: rgba(102, 187, 8, 0.9);
}

.border-t-green-90{
  border-top-color: rgba(102, 187, 8, 0.9);
}

.border-r-green-90{
  border-right-color: rgba(102, 187, 8, 0.9);
}

.border-b-green-90{
  border-bottom-color: rgba(102, 187, 8, 0.9);
}

.border-l-green-90{
  border-left-color: rgba(102, 187, 8, 0.9);
}

.border-blue-90{
  border-color: rgba(31, 168, 226, 0.9);
}

.border-t-blue-90{
  border-top-color: rgba(31, 168, 226, 0.9);
}

.border-r-blue-90{
  border-right-color: rgba(31, 168, 226, 0.9);
}

.border-b-blue-90{
  border-bottom-color: rgba(31, 168, 226, 0.9);
}

.border-l-blue-90{
  border-left-color: rgba(31, 168, 226, 0.9);
}

.border-orange-90{
  border-color: rgba(247, 148, 14, 0.9);
}

.border-t-orange-90{
  border-top-color: rgba(247, 148, 14, 0.9);
}

.border-r-orange-90{
  border-right-color: rgba(247, 148, 14, 0.9);
}

.border-b-orange-90{
  border-bottom-color: rgba(247, 148, 14, 0.9);
}

.border-l-orange-90{
  border-left-color: rgba(247, 148, 14, 0.9);
}

.border-primary-darkest-90{
  border-color: rgba(83, 15, 18, 0.9);
}

.border-t-primary-darkest-90{
  border-top-color: rgba(83, 15, 18, 0.9);
}

.border-r-primary-darkest-90{
  border-right-color: rgba(83, 15, 18, 0.9);
}

.border-b-primary-darkest-90{
  border-bottom-color: rgba(83, 15, 18, 0.9);
}

.border-l-primary-darkest-90{
  border-left-color: rgba(83, 15, 18, 0.9);
}

.border-primary-darker-90{
  border-color: rgba(124, 23, 27, 0.9);
}

.border-t-primary-darker-90{
  border-top-color: rgba(124, 23, 27, 0.9);
}

.border-r-primary-darker-90{
  border-right-color: rgba(124, 23, 27, 0.9);
}

.border-b-primary-darker-90{
  border-bottom-color: rgba(124, 23, 27, 0.9);
}

.border-l-primary-darker-90{
  border-left-color: rgba(124, 23, 27, 0.9);
}

.border-primary-dark-90{
  border-color: rgba(166, 30, 36, 0.9);
}

.border-t-primary-dark-90{
  border-top-color: rgba(166, 30, 36, 0.9);
}

.border-r-primary-dark-90{
  border-right-color: rgba(166, 30, 36, 0.9);
}

.border-b-primary-dark-90{
  border-bottom-color: rgba(166, 30, 36, 0.9);
}

.border-l-primary-dark-90{
  border-left-color: rgba(166, 30, 36, 0.9);
}

.border-primary-90{
  border-color: rgba(207, 38, 45, 0.9);
}

.border-t-primary-90{
  border-top-color: rgba(207, 38, 45, 0.9);
}

.border-r-primary-90{
  border-right-color: rgba(207, 38, 45, 0.9);
}

.border-b-primary-90{
  border-bottom-color: rgba(207, 38, 45, 0.9);
}

.border-l-primary-90{
  border-left-color: rgba(207, 38, 45, 0.9);
}

.border-primary-light-90{
  border-color: rgba(217, 81, 87, 0.9);
}

.border-t-primary-light-90{
  border-top-color: rgba(217, 81, 87, 0.9);
}

.border-r-primary-light-90{
  border-right-color: rgba(217, 81, 87, 0.9);
}

.border-b-primary-light-90{
  border-bottom-color: rgba(217, 81, 87, 0.9);
}

.border-l-primary-light-90{
  border-left-color: rgba(217, 81, 87, 0.9);
}

.border-primary-lighter-90{
  border-color: rgba(226, 125, 129, 0.9);
}

.border-t-primary-lighter-90{
  border-top-color: rgba(226, 125, 129, 0.9);
}

.border-r-primary-lighter-90{
  border-right-color: rgba(226, 125, 129, 0.9);
}

.border-b-primary-lighter-90{
  border-bottom-color: rgba(226, 125, 129, 0.9);
}

.border-l-primary-lighter-90{
  border-left-color: rgba(226, 125, 129, 0.9);
}

.border-primary-lightest-90{
  border-color: rgba(236, 168, 171, 0.9);
}

.border-t-primary-lightest-90{
  border-top-color: rgba(236, 168, 171, 0.9);
}

.border-r-primary-lightest-90{
  border-right-color: rgba(236, 168, 171, 0.9);
}

.border-b-primary-lightest-90{
  border-bottom-color: rgba(236, 168, 171, 0.9);
}

.border-l-primary-lightest-90{
  border-left-color: rgba(236, 168, 171, 0.9);
}

.border-secondary-darkest-90{
  border-color: rgba(62, 69, 37, 0.9);
}

.border-t-secondary-darkest-90{
  border-top-color: rgba(62, 69, 37, 0.9);
}

.border-r-secondary-darkest-90{
  border-right-color: rgba(62, 69, 37, 0.9);
}

.border-b-secondary-darkest-90{
  border-bottom-color: rgba(62, 69, 37, 0.9);
}

.border-l-secondary-darkest-90{
  border-left-color: rgba(62, 69, 37, 0.9);
}

.border-secondary-darker-90{
  border-color: rgba(94, 104, 55, 0.9);
}

.border-t-secondary-darker-90{
  border-top-color: rgba(94, 104, 55, 0.9);
}

.border-r-secondary-darker-90{
  border-right-color: rgba(94, 104, 55, 0.9);
}

.border-b-secondary-darker-90{
  border-bottom-color: rgba(94, 104, 55, 0.9);
}

.border-l-secondary-darker-90{
  border-left-color: rgba(94, 104, 55, 0.9);
}

.border-secondary-dark-90{
  border-color: rgba(125, 138, 74, 0.9);
}

.border-t-secondary-dark-90{
  border-top-color: rgba(125, 138, 74, 0.9);
}

.border-r-secondary-dark-90{
  border-right-color: rgba(125, 138, 74, 0.9);
}

.border-b-secondary-dark-90{
  border-bottom-color: rgba(125, 138, 74, 0.9);
}

.border-l-secondary-dark-90{
  border-left-color: rgba(125, 138, 74, 0.9);
}

.border-secondary-90{
  border-color: rgba(156, 173, 92, 0.9);
}

.border-t-secondary-90{
  border-top-color: rgba(156, 173, 92, 0.9);
}

.border-r-secondary-90{
  border-right-color: rgba(156, 173, 92, 0.9);
}

.border-b-secondary-90{
  border-bottom-color: rgba(156, 173, 92, 0.9);
}

.border-l-secondary-90{
  border-left-color: rgba(156, 173, 92, 0.9);
}

.border-secondary-light-90{
  border-color: rgba(176, 189, 125, 0.9);
}

.border-t-secondary-light-90{
  border-top-color: rgba(176, 189, 125, 0.9);
}

.border-r-secondary-light-90{
  border-right-color: rgba(176, 189, 125, 0.9);
}

.border-b-secondary-light-90{
  border-bottom-color: rgba(176, 189, 125, 0.9);
}

.border-l-secondary-light-90{
  border-left-color: rgba(176, 189, 125, 0.9);
}

.border-secondary-lighter-90{
  border-color: rgba(196, 206, 157, 0.9);
}

.border-t-secondary-lighter-90{
  border-top-color: rgba(196, 206, 157, 0.9);
}

.border-r-secondary-lighter-90{
  border-right-color: rgba(196, 206, 157, 0.9);
}

.border-b-secondary-lighter-90{
  border-bottom-color: rgba(196, 206, 157, 0.9);
}

.border-l-secondary-lighter-90{
  border-left-color: rgba(196, 206, 157, 0.9);
}

.border-secondary-lightest-90{
  border-color: rgba(215, 222, 190, 0.9);
}

.border-t-secondary-lightest-90{
  border-top-color: rgba(215, 222, 190, 0.9);
}

.border-r-secondary-lightest-90{
  border-right-color: rgba(215, 222, 190, 0.9);
}

.border-b-secondary-lightest-90{
  border-bottom-color: rgba(215, 222, 190, 0.9);
}

.border-l-secondary-lightest-90{
  border-left-color: rgba(215, 222, 190, 0.9);
}

.border-tertiary-darkest-90{
  border-color: rgba(15, 47, 33, 0.9);
}

.border-t-tertiary-darkest-90{
  border-top-color: rgba(15, 47, 33, 0.9);
}

.border-r-tertiary-darkest-90{
  border-right-color: rgba(15, 47, 33, 0.9);
}

.border-b-tertiary-darkest-90{
  border-bottom-color: rgba(15, 47, 33, 0.9);
}

.border-l-tertiary-darkest-90{
  border-left-color: rgba(15, 47, 33, 0.9);
}

.border-tertiary-darker-90{
  border-color: rgba(26, 71, 49, 0.9);
}

.border-t-tertiary-darker-90{
  border-top-color: rgba(26, 71, 49, 0.9);
}

.border-r-tertiary-darker-90{
  border-right-color: rgba(26, 71, 49, 0.9);
}

.border-b-tertiary-darker-90{
  border-bottom-color: rgba(26, 71, 49, 0.9);
}

.border-l-tertiary-darker-90{
  border-left-color: rgba(26, 71, 49, 0.9);
}

.border-tertiary-dark-90{
  border-color: rgba(31, 157, 85, 0.9);
}

.border-t-tertiary-dark-90{
  border-top-color: rgba(31, 157, 85, 0.9);
}

.border-r-tertiary-dark-90{
  border-right-color: rgba(31, 157, 85, 0.9);
}

.border-b-tertiary-dark-90{
  border-bottom-color: rgba(31, 157, 85, 0.9);
}

.border-l-tertiary-dark-90{
  border-left-color: rgba(31, 157, 85, 0.9);
}

.border-tertiary-90{
  border-color: rgba(255, 197, 0, 0.9);
}

.border-t-tertiary-90{
  border-top-color: rgba(255, 197, 0, 0.9);
}

.border-r-tertiary-90{
  border-right-color: rgba(255, 197, 0, 0.9);
}

.border-b-tertiary-90{
  border-bottom-color: rgba(255, 197, 0, 0.9);
}

.border-l-tertiary-90{
  border-left-color: rgba(255, 197, 0, 0.9);
}

.border-tertiary-light-90{
  border-color: rgba(81, 216, 138, 0.9);
}

.border-t-tertiary-light-90{
  border-top-color: rgba(81, 216, 138, 0.9);
}

.border-r-tertiary-light-90{
  border-right-color: rgba(81, 216, 138, 0.9);
}

.border-b-tertiary-light-90{
  border-bottom-color: rgba(81, 216, 138, 0.9);
}

.border-l-tertiary-light-90{
  border-left-color: rgba(81, 216, 138, 0.9);
}

.border-tertiary-lighter-90{
  border-color: rgba(162, 245, 191, 0.9);
}

.border-t-tertiary-lighter-90{
  border-top-color: rgba(162, 245, 191, 0.9);
}

.border-r-tertiary-lighter-90{
  border-right-color: rgba(162, 245, 191, 0.9);
}

.border-b-tertiary-lighter-90{
  border-bottom-color: rgba(162, 245, 191, 0.9);
}

.border-l-tertiary-lighter-90{
  border-left-color: rgba(162, 245, 191, 0.9);
}

.border-tertiary-lightest-90{
  border-color: rgba(227, 252, 236, 0.9);
}

.border-t-tertiary-lightest-90{
  border-top-color: rgba(227, 252, 236, 0.9);
}

.border-r-tertiary-lightest-90{
  border-right-color: rgba(227, 252, 236, 0.9);
}

.border-b-tertiary-lightest-90{
  border-bottom-color: rgba(227, 252, 236, 0.9);
}

.border-l-tertiary-lightest-90{
  border-left-color: rgba(227, 252, 236, 0.9);
}

.border-default-90{
  border-color: rgba(179, 188, 197, 0.9);
}

.border-t-default-90{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.border-r-default-90{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.border-b-default-90{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.border-l-default-90{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-border-90:hover{
  border-color: rgba(230, 235, 245, 0.9);
}

.hover\:border-t-border-90:hover{
  border-top-color: rgba(230, 235, 245, 0.9);
}

.hover\:border-r-border-90:hover{
  border-right-color: rgba(230, 235, 245, 0.9);
}

.hover\:border-b-border-90:hover{
  border-bottom-color: rgba(230, 235, 245, 0.9);
}

.hover\:border-l-border-90:hover{
  border-left-color: rgba(230, 235, 245, 0.9);
}

.hover\:border-form-90:hover{
  border-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-t-form-90:hover{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-r-form-90:hover{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-b-form-90:hover{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-l-form-90:hover{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-form-active-90:hover{
  border-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-t-form-active-90:hover{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-r-form-active-90:hover{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-b-form-active-90:hover{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-l-form-active-90:hover{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-black-90:hover{
  border-color: rgba(33, 37, 41, 0.9);
}

.hover\:border-t-black-90:hover{
  border-top-color: rgba(33, 37, 41, 0.9);
}

.hover\:border-r-black-90:hover{
  border-right-color: rgba(33, 37, 41, 0.9);
}

.hover\:border-b-black-90:hover{
  border-bottom-color: rgba(33, 37, 41, 0.9);
}

.hover\:border-l-black-90:hover{
  border-left-color: rgba(33, 37, 41, 0.9);
}

.hover\:border-grey-darkest-90:hover{
  border-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-t-grey-darkest-90:hover{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-r-grey-darkest-90:hover{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-b-grey-darkest-90:hover{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-l-grey-darkest-90:hover{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-grey-darker-90:hover{
  border-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-t-grey-darker-90:hover{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-r-grey-darker-90:hover{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-b-grey-darker-90:hover{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-l-grey-darker-90:hover{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.hover\:border-grey-dark-90:hover{
  border-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-t-grey-dark-90:hover{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-r-grey-dark-90:hover{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-b-grey-dark-90:hover{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-l-grey-dark-90:hover{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.hover\:border-grey-90:hover{
  border-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-t-grey-90:hover{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-r-grey-90:hover{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-b-grey-90:hover{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-l-grey-90:hover{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.hover\:border-grey-light-90:hover{
  border-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-t-grey-light-90:hover{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-r-grey-light-90:hover{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-b-grey-light-90:hover{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-l-grey-light-90:hover{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-grey-lighter-90:hover{
  border-color: rgba(222, 228, 233, 0.9);
}

.hover\:border-t-grey-lighter-90:hover{
  border-top-color: rgba(222, 228, 233, 0.9);
}

.hover\:border-r-grey-lighter-90:hover{
  border-right-color: rgba(222, 228, 233, 0.9);
}

.hover\:border-b-grey-lighter-90:hover{
  border-bottom-color: rgba(222, 228, 233, 0.9);
}

.hover\:border-l-grey-lighter-90:hover{
  border-left-color: rgba(222, 228, 233, 0.9);
}

.hover\:border-grey-lightest-90:hover{
  border-color: rgba(244, 246, 249, 0.9);
}

.hover\:border-t-grey-lightest-90:hover{
  border-top-color: rgba(244, 246, 249, 0.9);
}

.hover\:border-r-grey-lightest-90:hover{
  border-right-color: rgba(244, 246, 249, 0.9);
}

.hover\:border-b-grey-lightest-90:hover{
  border-bottom-color: rgba(244, 246, 249, 0.9);
}

.hover\:border-l-grey-lightest-90:hover{
  border-left-color: rgba(244, 246, 249, 0.9);
}

.hover\:border-white-90:hover{
  border-color: rgba(255, 255, 255, 0.9);
}

.hover\:border-t-white-90:hover{
  border-top-color: rgba(255, 255, 255, 0.9);
}

.hover\:border-r-white-90:hover{
  border-right-color: rgba(255, 255, 255, 0.9);
}

.hover\:border-b-white-90:hover{
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.hover\:border-l-white-90:hover{
  border-left-color: rgba(255, 255, 255, 0.9);
}

.hover\:border-red-90:hover{
  border-color: rgba(211, 26, 8, 0.9);
}

.hover\:border-t-red-90:hover{
  border-top-color: rgba(211, 26, 8, 0.9);
}

.hover\:border-r-red-90:hover{
  border-right-color: rgba(211, 26, 8, 0.9);
}

.hover\:border-b-red-90:hover{
  border-bottom-color: rgba(211, 26, 8, 0.9);
}

.hover\:border-l-red-90:hover{
  border-left-color: rgba(211, 26, 8, 0.9);
}

.hover\:border-green-90:hover{
  border-color: rgba(102, 187, 8, 0.9);
}

.hover\:border-t-green-90:hover{
  border-top-color: rgba(102, 187, 8, 0.9);
}

.hover\:border-r-green-90:hover{
  border-right-color: rgba(102, 187, 8, 0.9);
}

.hover\:border-b-green-90:hover{
  border-bottom-color: rgba(102, 187, 8, 0.9);
}

.hover\:border-l-green-90:hover{
  border-left-color: rgba(102, 187, 8, 0.9);
}

.hover\:border-blue-90:hover{
  border-color: rgba(31, 168, 226, 0.9);
}

.hover\:border-t-blue-90:hover{
  border-top-color: rgba(31, 168, 226, 0.9);
}

.hover\:border-r-blue-90:hover{
  border-right-color: rgba(31, 168, 226, 0.9);
}

.hover\:border-b-blue-90:hover{
  border-bottom-color: rgba(31, 168, 226, 0.9);
}

.hover\:border-l-blue-90:hover{
  border-left-color: rgba(31, 168, 226, 0.9);
}

.hover\:border-orange-90:hover{
  border-color: rgba(247, 148, 14, 0.9);
}

.hover\:border-t-orange-90:hover{
  border-top-color: rgba(247, 148, 14, 0.9);
}

.hover\:border-r-orange-90:hover{
  border-right-color: rgba(247, 148, 14, 0.9);
}

.hover\:border-b-orange-90:hover{
  border-bottom-color: rgba(247, 148, 14, 0.9);
}

.hover\:border-l-orange-90:hover{
  border-left-color: rgba(247, 148, 14, 0.9);
}

.hover\:border-primary-darkest-90:hover{
  border-color: rgba(83, 15, 18, 0.9);
}

.hover\:border-t-primary-darkest-90:hover{
  border-top-color: rgba(83, 15, 18, 0.9);
}

.hover\:border-r-primary-darkest-90:hover{
  border-right-color: rgba(83, 15, 18, 0.9);
}

.hover\:border-b-primary-darkest-90:hover{
  border-bottom-color: rgba(83, 15, 18, 0.9);
}

.hover\:border-l-primary-darkest-90:hover{
  border-left-color: rgba(83, 15, 18, 0.9);
}

.hover\:border-primary-darker-90:hover{
  border-color: rgba(124, 23, 27, 0.9);
}

.hover\:border-t-primary-darker-90:hover{
  border-top-color: rgba(124, 23, 27, 0.9);
}

.hover\:border-r-primary-darker-90:hover{
  border-right-color: rgba(124, 23, 27, 0.9);
}

.hover\:border-b-primary-darker-90:hover{
  border-bottom-color: rgba(124, 23, 27, 0.9);
}

.hover\:border-l-primary-darker-90:hover{
  border-left-color: rgba(124, 23, 27, 0.9);
}

.hover\:border-primary-dark-90:hover{
  border-color: rgba(166, 30, 36, 0.9);
}

.hover\:border-t-primary-dark-90:hover{
  border-top-color: rgba(166, 30, 36, 0.9);
}

.hover\:border-r-primary-dark-90:hover{
  border-right-color: rgba(166, 30, 36, 0.9);
}

.hover\:border-b-primary-dark-90:hover{
  border-bottom-color: rgba(166, 30, 36, 0.9);
}

.hover\:border-l-primary-dark-90:hover{
  border-left-color: rgba(166, 30, 36, 0.9);
}

.hover\:border-primary-90:hover{
  border-color: rgba(207, 38, 45, 0.9);
}

.hover\:border-t-primary-90:hover{
  border-top-color: rgba(207, 38, 45, 0.9);
}

.hover\:border-r-primary-90:hover{
  border-right-color: rgba(207, 38, 45, 0.9);
}

.hover\:border-b-primary-90:hover{
  border-bottom-color: rgba(207, 38, 45, 0.9);
}

.hover\:border-l-primary-90:hover{
  border-left-color: rgba(207, 38, 45, 0.9);
}

.hover\:border-primary-light-90:hover{
  border-color: rgba(217, 81, 87, 0.9);
}

.hover\:border-t-primary-light-90:hover{
  border-top-color: rgba(217, 81, 87, 0.9);
}

.hover\:border-r-primary-light-90:hover{
  border-right-color: rgba(217, 81, 87, 0.9);
}

.hover\:border-b-primary-light-90:hover{
  border-bottom-color: rgba(217, 81, 87, 0.9);
}

.hover\:border-l-primary-light-90:hover{
  border-left-color: rgba(217, 81, 87, 0.9);
}

.hover\:border-primary-lighter-90:hover{
  border-color: rgba(226, 125, 129, 0.9);
}

.hover\:border-t-primary-lighter-90:hover{
  border-top-color: rgba(226, 125, 129, 0.9);
}

.hover\:border-r-primary-lighter-90:hover{
  border-right-color: rgba(226, 125, 129, 0.9);
}

.hover\:border-b-primary-lighter-90:hover{
  border-bottom-color: rgba(226, 125, 129, 0.9);
}

.hover\:border-l-primary-lighter-90:hover{
  border-left-color: rgba(226, 125, 129, 0.9);
}

.hover\:border-primary-lightest-90:hover{
  border-color: rgba(236, 168, 171, 0.9);
}

.hover\:border-t-primary-lightest-90:hover{
  border-top-color: rgba(236, 168, 171, 0.9);
}

.hover\:border-r-primary-lightest-90:hover{
  border-right-color: rgba(236, 168, 171, 0.9);
}

.hover\:border-b-primary-lightest-90:hover{
  border-bottom-color: rgba(236, 168, 171, 0.9);
}

.hover\:border-l-primary-lightest-90:hover{
  border-left-color: rgba(236, 168, 171, 0.9);
}

.hover\:border-secondary-darkest-90:hover{
  border-color: rgba(62, 69, 37, 0.9);
}

.hover\:border-t-secondary-darkest-90:hover{
  border-top-color: rgba(62, 69, 37, 0.9);
}

.hover\:border-r-secondary-darkest-90:hover{
  border-right-color: rgba(62, 69, 37, 0.9);
}

.hover\:border-b-secondary-darkest-90:hover{
  border-bottom-color: rgba(62, 69, 37, 0.9);
}

.hover\:border-l-secondary-darkest-90:hover{
  border-left-color: rgba(62, 69, 37, 0.9);
}

.hover\:border-secondary-darker-90:hover{
  border-color: rgba(94, 104, 55, 0.9);
}

.hover\:border-t-secondary-darker-90:hover{
  border-top-color: rgba(94, 104, 55, 0.9);
}

.hover\:border-r-secondary-darker-90:hover{
  border-right-color: rgba(94, 104, 55, 0.9);
}

.hover\:border-b-secondary-darker-90:hover{
  border-bottom-color: rgba(94, 104, 55, 0.9);
}

.hover\:border-l-secondary-darker-90:hover{
  border-left-color: rgba(94, 104, 55, 0.9);
}

.hover\:border-secondary-dark-90:hover{
  border-color: rgba(125, 138, 74, 0.9);
}

.hover\:border-t-secondary-dark-90:hover{
  border-top-color: rgba(125, 138, 74, 0.9);
}

.hover\:border-r-secondary-dark-90:hover{
  border-right-color: rgba(125, 138, 74, 0.9);
}

.hover\:border-b-secondary-dark-90:hover{
  border-bottom-color: rgba(125, 138, 74, 0.9);
}

.hover\:border-l-secondary-dark-90:hover{
  border-left-color: rgba(125, 138, 74, 0.9);
}

.hover\:border-secondary-90:hover{
  border-color: rgba(156, 173, 92, 0.9);
}

.hover\:border-t-secondary-90:hover{
  border-top-color: rgba(156, 173, 92, 0.9);
}

.hover\:border-r-secondary-90:hover{
  border-right-color: rgba(156, 173, 92, 0.9);
}

.hover\:border-b-secondary-90:hover{
  border-bottom-color: rgba(156, 173, 92, 0.9);
}

.hover\:border-l-secondary-90:hover{
  border-left-color: rgba(156, 173, 92, 0.9);
}

.hover\:border-secondary-light-90:hover{
  border-color: rgba(176, 189, 125, 0.9);
}

.hover\:border-t-secondary-light-90:hover{
  border-top-color: rgba(176, 189, 125, 0.9);
}

.hover\:border-r-secondary-light-90:hover{
  border-right-color: rgba(176, 189, 125, 0.9);
}

.hover\:border-b-secondary-light-90:hover{
  border-bottom-color: rgba(176, 189, 125, 0.9);
}

.hover\:border-l-secondary-light-90:hover{
  border-left-color: rgba(176, 189, 125, 0.9);
}

.hover\:border-secondary-lighter-90:hover{
  border-color: rgba(196, 206, 157, 0.9);
}

.hover\:border-t-secondary-lighter-90:hover{
  border-top-color: rgba(196, 206, 157, 0.9);
}

.hover\:border-r-secondary-lighter-90:hover{
  border-right-color: rgba(196, 206, 157, 0.9);
}

.hover\:border-b-secondary-lighter-90:hover{
  border-bottom-color: rgba(196, 206, 157, 0.9);
}

.hover\:border-l-secondary-lighter-90:hover{
  border-left-color: rgba(196, 206, 157, 0.9);
}

.hover\:border-secondary-lightest-90:hover{
  border-color: rgba(215, 222, 190, 0.9);
}

.hover\:border-t-secondary-lightest-90:hover{
  border-top-color: rgba(215, 222, 190, 0.9);
}

.hover\:border-r-secondary-lightest-90:hover{
  border-right-color: rgba(215, 222, 190, 0.9);
}

.hover\:border-b-secondary-lightest-90:hover{
  border-bottom-color: rgba(215, 222, 190, 0.9);
}

.hover\:border-l-secondary-lightest-90:hover{
  border-left-color: rgba(215, 222, 190, 0.9);
}

.hover\:border-tertiary-darkest-90:hover{
  border-color: rgba(15, 47, 33, 0.9);
}

.hover\:border-t-tertiary-darkest-90:hover{
  border-top-color: rgba(15, 47, 33, 0.9);
}

.hover\:border-r-tertiary-darkest-90:hover{
  border-right-color: rgba(15, 47, 33, 0.9);
}

.hover\:border-b-tertiary-darkest-90:hover{
  border-bottom-color: rgba(15, 47, 33, 0.9);
}

.hover\:border-l-tertiary-darkest-90:hover{
  border-left-color: rgba(15, 47, 33, 0.9);
}

.hover\:border-tertiary-darker-90:hover{
  border-color: rgba(26, 71, 49, 0.9);
}

.hover\:border-t-tertiary-darker-90:hover{
  border-top-color: rgba(26, 71, 49, 0.9);
}

.hover\:border-r-tertiary-darker-90:hover{
  border-right-color: rgba(26, 71, 49, 0.9);
}

.hover\:border-b-tertiary-darker-90:hover{
  border-bottom-color: rgba(26, 71, 49, 0.9);
}

.hover\:border-l-tertiary-darker-90:hover{
  border-left-color: rgba(26, 71, 49, 0.9);
}

.hover\:border-tertiary-dark-90:hover{
  border-color: rgba(31, 157, 85, 0.9);
}

.hover\:border-t-tertiary-dark-90:hover{
  border-top-color: rgba(31, 157, 85, 0.9);
}

.hover\:border-r-tertiary-dark-90:hover{
  border-right-color: rgba(31, 157, 85, 0.9);
}

.hover\:border-b-tertiary-dark-90:hover{
  border-bottom-color: rgba(31, 157, 85, 0.9);
}

.hover\:border-l-tertiary-dark-90:hover{
  border-left-color: rgba(31, 157, 85, 0.9);
}

.hover\:border-tertiary-90:hover{
  border-color: rgba(255, 197, 0, 0.9);
}

.hover\:border-t-tertiary-90:hover{
  border-top-color: rgba(255, 197, 0, 0.9);
}

.hover\:border-r-tertiary-90:hover{
  border-right-color: rgba(255, 197, 0, 0.9);
}

.hover\:border-b-tertiary-90:hover{
  border-bottom-color: rgba(255, 197, 0, 0.9);
}

.hover\:border-l-tertiary-90:hover{
  border-left-color: rgba(255, 197, 0, 0.9);
}

.hover\:border-tertiary-light-90:hover{
  border-color: rgba(81, 216, 138, 0.9);
}

.hover\:border-t-tertiary-light-90:hover{
  border-top-color: rgba(81, 216, 138, 0.9);
}

.hover\:border-r-tertiary-light-90:hover{
  border-right-color: rgba(81, 216, 138, 0.9);
}

.hover\:border-b-tertiary-light-90:hover{
  border-bottom-color: rgba(81, 216, 138, 0.9);
}

.hover\:border-l-tertiary-light-90:hover{
  border-left-color: rgba(81, 216, 138, 0.9);
}

.hover\:border-tertiary-lighter-90:hover{
  border-color: rgba(162, 245, 191, 0.9);
}

.hover\:border-t-tertiary-lighter-90:hover{
  border-top-color: rgba(162, 245, 191, 0.9);
}

.hover\:border-r-tertiary-lighter-90:hover{
  border-right-color: rgba(162, 245, 191, 0.9);
}

.hover\:border-b-tertiary-lighter-90:hover{
  border-bottom-color: rgba(162, 245, 191, 0.9);
}

.hover\:border-l-tertiary-lighter-90:hover{
  border-left-color: rgba(162, 245, 191, 0.9);
}

.hover\:border-tertiary-lightest-90:hover{
  border-color: rgba(227, 252, 236, 0.9);
}

.hover\:border-t-tertiary-lightest-90:hover{
  border-top-color: rgba(227, 252, 236, 0.9);
}

.hover\:border-r-tertiary-lightest-90:hover{
  border-right-color: rgba(227, 252, 236, 0.9);
}

.hover\:border-b-tertiary-lightest-90:hover{
  border-bottom-color: rgba(227, 252, 236, 0.9);
}

.hover\:border-l-tertiary-lightest-90:hover{
  border-left-color: rgba(227, 252, 236, 0.9);
}

.hover\:border-default-90:hover{
  border-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-t-default-90:hover{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-r-default-90:hover{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-b-default-90:hover{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.hover\:border-l-default-90:hover{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-border-90:focus{
  border-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-t-border-90:focus{
  border-top-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-r-border-90:focus{
  border-right-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-b-border-90:focus{
  border-bottom-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-l-border-90:focus{
  border-left-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-form-90:focus{
  border-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-t-form-90:focus{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-r-form-90:focus{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-b-form-90:focus{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-l-form-90:focus{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-form-active-90:focus{
  border-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-t-form-active-90:focus{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-r-form-active-90:focus{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-b-form-active-90:focus{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-l-form-active-90:focus{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-black-90:focus{
  border-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-t-black-90:focus{
  border-top-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-r-black-90:focus{
  border-right-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-b-black-90:focus{
  border-bottom-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-l-black-90:focus{
  border-left-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-grey-darkest-90:focus{
  border-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-t-grey-darkest-90:focus{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-r-grey-darkest-90:focus{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-b-grey-darkest-90:focus{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-l-grey-darkest-90:focus{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-grey-darker-90:focus{
  border-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-t-grey-darker-90:focus{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-r-grey-darker-90:focus{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-b-grey-darker-90:focus{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-l-grey-darker-90:focus{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-grey-dark-90:focus{
  border-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-t-grey-dark-90:focus{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-r-grey-dark-90:focus{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-b-grey-dark-90:focus{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-l-grey-dark-90:focus{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-grey-90:focus{
  border-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-t-grey-90:focus{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-r-grey-90:focus{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-b-grey-90:focus{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-l-grey-90:focus{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-grey-light-90:focus{
  border-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-t-grey-light-90:focus{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-r-grey-light-90:focus{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-b-grey-light-90:focus{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-l-grey-light-90:focus{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-grey-lighter-90:focus{
  border-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-t-grey-lighter-90:focus{
  border-top-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-r-grey-lighter-90:focus{
  border-right-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-b-grey-lighter-90:focus{
  border-bottom-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-l-grey-lighter-90:focus{
  border-left-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-grey-lightest-90:focus{
  border-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-t-grey-lightest-90:focus{
  border-top-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-r-grey-lightest-90:focus{
  border-right-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-b-grey-lightest-90:focus{
  border-bottom-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-l-grey-lightest-90:focus{
  border-left-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-white-90:focus{
  border-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-t-white-90:focus{
  border-top-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-r-white-90:focus{
  border-right-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-b-white-90:focus{
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-l-white-90:focus{
  border-left-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-red-90:focus{
  border-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-t-red-90:focus{
  border-top-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-r-red-90:focus{
  border-right-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-b-red-90:focus{
  border-bottom-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-l-red-90:focus{
  border-left-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-green-90:focus{
  border-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-t-green-90:focus{
  border-top-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-r-green-90:focus{
  border-right-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-b-green-90:focus{
  border-bottom-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-l-green-90:focus{
  border-left-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-blue-90:focus{
  border-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-t-blue-90:focus{
  border-top-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-r-blue-90:focus{
  border-right-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-b-blue-90:focus{
  border-bottom-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-l-blue-90:focus{
  border-left-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-orange-90:focus{
  border-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-t-orange-90:focus{
  border-top-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-r-orange-90:focus{
  border-right-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-b-orange-90:focus{
  border-bottom-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-l-orange-90:focus{
  border-left-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-primary-darkest-90:focus{
  border-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-t-primary-darkest-90:focus{
  border-top-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-r-primary-darkest-90:focus{
  border-right-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-b-primary-darkest-90:focus{
  border-bottom-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-l-primary-darkest-90:focus{
  border-left-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-primary-darker-90:focus{
  border-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-t-primary-darker-90:focus{
  border-top-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-r-primary-darker-90:focus{
  border-right-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-b-primary-darker-90:focus{
  border-bottom-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-l-primary-darker-90:focus{
  border-left-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-primary-dark-90:focus{
  border-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-t-primary-dark-90:focus{
  border-top-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-r-primary-dark-90:focus{
  border-right-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-b-primary-dark-90:focus{
  border-bottom-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-l-primary-dark-90:focus{
  border-left-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-primary-90:focus{
  border-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-t-primary-90:focus{
  border-top-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-r-primary-90:focus{
  border-right-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-b-primary-90:focus{
  border-bottom-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-l-primary-90:focus{
  border-left-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-primary-light-90:focus{
  border-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-t-primary-light-90:focus{
  border-top-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-r-primary-light-90:focus{
  border-right-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-b-primary-light-90:focus{
  border-bottom-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-l-primary-light-90:focus{
  border-left-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-primary-lighter-90:focus{
  border-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-t-primary-lighter-90:focus{
  border-top-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-r-primary-lighter-90:focus{
  border-right-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-b-primary-lighter-90:focus{
  border-bottom-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-l-primary-lighter-90:focus{
  border-left-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-primary-lightest-90:focus{
  border-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-t-primary-lightest-90:focus{
  border-top-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-r-primary-lightest-90:focus{
  border-right-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-b-primary-lightest-90:focus{
  border-bottom-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-l-primary-lightest-90:focus{
  border-left-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-secondary-darkest-90:focus{
  border-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-t-secondary-darkest-90:focus{
  border-top-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-r-secondary-darkest-90:focus{
  border-right-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-b-secondary-darkest-90:focus{
  border-bottom-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-l-secondary-darkest-90:focus{
  border-left-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-secondary-darker-90:focus{
  border-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-t-secondary-darker-90:focus{
  border-top-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-r-secondary-darker-90:focus{
  border-right-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-b-secondary-darker-90:focus{
  border-bottom-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-l-secondary-darker-90:focus{
  border-left-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-secondary-dark-90:focus{
  border-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-t-secondary-dark-90:focus{
  border-top-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-r-secondary-dark-90:focus{
  border-right-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-b-secondary-dark-90:focus{
  border-bottom-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-l-secondary-dark-90:focus{
  border-left-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-secondary-90:focus{
  border-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-t-secondary-90:focus{
  border-top-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-r-secondary-90:focus{
  border-right-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-b-secondary-90:focus{
  border-bottom-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-l-secondary-90:focus{
  border-left-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-secondary-light-90:focus{
  border-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-t-secondary-light-90:focus{
  border-top-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-r-secondary-light-90:focus{
  border-right-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-b-secondary-light-90:focus{
  border-bottom-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-l-secondary-light-90:focus{
  border-left-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-secondary-lighter-90:focus{
  border-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-t-secondary-lighter-90:focus{
  border-top-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-r-secondary-lighter-90:focus{
  border-right-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-b-secondary-lighter-90:focus{
  border-bottom-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-l-secondary-lighter-90:focus{
  border-left-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-secondary-lightest-90:focus{
  border-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-t-secondary-lightest-90:focus{
  border-top-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-r-secondary-lightest-90:focus{
  border-right-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-b-secondary-lightest-90:focus{
  border-bottom-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-l-secondary-lightest-90:focus{
  border-left-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-tertiary-darkest-90:focus{
  border-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-t-tertiary-darkest-90:focus{
  border-top-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-r-tertiary-darkest-90:focus{
  border-right-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-b-tertiary-darkest-90:focus{
  border-bottom-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-l-tertiary-darkest-90:focus{
  border-left-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-tertiary-darker-90:focus{
  border-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-t-tertiary-darker-90:focus{
  border-top-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-r-tertiary-darker-90:focus{
  border-right-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-b-tertiary-darker-90:focus{
  border-bottom-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-l-tertiary-darker-90:focus{
  border-left-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-tertiary-dark-90:focus{
  border-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-t-tertiary-dark-90:focus{
  border-top-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-r-tertiary-dark-90:focus{
  border-right-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-b-tertiary-dark-90:focus{
  border-bottom-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-l-tertiary-dark-90:focus{
  border-left-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-tertiary-90:focus{
  border-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-t-tertiary-90:focus{
  border-top-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-r-tertiary-90:focus{
  border-right-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-b-tertiary-90:focus{
  border-bottom-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-l-tertiary-90:focus{
  border-left-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-tertiary-light-90:focus{
  border-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-t-tertiary-light-90:focus{
  border-top-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-r-tertiary-light-90:focus{
  border-right-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-b-tertiary-light-90:focus{
  border-bottom-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-l-tertiary-light-90:focus{
  border-left-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-tertiary-lighter-90:focus{
  border-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-t-tertiary-lighter-90:focus{
  border-top-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-r-tertiary-lighter-90:focus{
  border-right-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-b-tertiary-lighter-90:focus{
  border-bottom-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-l-tertiary-lighter-90:focus{
  border-left-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-tertiary-lightest-90:focus{
  border-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-t-tertiary-lightest-90:focus{
  border-top-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-r-tertiary-lightest-90:focus{
  border-right-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-b-tertiary-lightest-90:focus{
  border-bottom-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-l-tertiary-lightest-90:focus{
  border-left-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-default-90:focus{
  border-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-t-default-90:focus{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-r-default-90:focus{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-b-default-90:focus{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-l-default-90:focus{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-border-90:focus{
  border-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-t-border-90:focus{
  border-top-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-r-border-90:focus{
  border-right-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-b-border-90:focus{
  border-bottom-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-l-border-90:focus{
  border-left-color: rgba(230, 235, 245, 0.9);
}

.focus\:border-form-90:focus{
  border-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-t-form-90:focus{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-r-form-90:focus{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-b-form-90:focus{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-l-form-90:focus{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-form-active-90:focus{
  border-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-t-form-active-90:focus{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-r-form-active-90:focus{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-b-form-active-90:focus{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-l-form-active-90:focus{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-black-90:focus{
  border-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-t-black-90:focus{
  border-top-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-r-black-90:focus{
  border-right-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-b-black-90:focus{
  border-bottom-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-l-black-90:focus{
  border-left-color: rgba(33, 37, 41, 0.9);
}

.focus\:border-grey-darkest-90:focus{
  border-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-t-grey-darkest-90:focus{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-r-grey-darkest-90:focus{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-b-grey-darkest-90:focus{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-l-grey-darkest-90:focus{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-grey-darker-90:focus{
  border-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-t-grey-darker-90:focus{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-r-grey-darker-90:focus{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-b-grey-darker-90:focus{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-l-grey-darker-90:focus{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.focus\:border-grey-dark-90:focus{
  border-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-t-grey-dark-90:focus{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-r-grey-dark-90:focus{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-b-grey-dark-90:focus{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-l-grey-dark-90:focus{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.focus\:border-grey-90:focus{
  border-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-t-grey-90:focus{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-r-grey-90:focus{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-b-grey-90:focus{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-l-grey-90:focus{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.focus\:border-grey-light-90:focus{
  border-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-t-grey-light-90:focus{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-r-grey-light-90:focus{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-b-grey-light-90:focus{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-l-grey-light-90:focus{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-grey-lighter-90:focus{
  border-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-t-grey-lighter-90:focus{
  border-top-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-r-grey-lighter-90:focus{
  border-right-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-b-grey-lighter-90:focus{
  border-bottom-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-l-grey-lighter-90:focus{
  border-left-color: rgba(222, 228, 233, 0.9);
}

.focus\:border-grey-lightest-90:focus{
  border-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-t-grey-lightest-90:focus{
  border-top-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-r-grey-lightest-90:focus{
  border-right-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-b-grey-lightest-90:focus{
  border-bottom-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-l-grey-lightest-90:focus{
  border-left-color: rgba(244, 246, 249, 0.9);
}

.focus\:border-white-90:focus{
  border-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-t-white-90:focus{
  border-top-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-r-white-90:focus{
  border-right-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-b-white-90:focus{
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-l-white-90:focus{
  border-left-color: rgba(255, 255, 255, 0.9);
}

.focus\:border-red-90:focus{
  border-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-t-red-90:focus{
  border-top-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-r-red-90:focus{
  border-right-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-b-red-90:focus{
  border-bottom-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-l-red-90:focus{
  border-left-color: rgba(211, 26, 8, 0.9);
}

.focus\:border-green-90:focus{
  border-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-t-green-90:focus{
  border-top-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-r-green-90:focus{
  border-right-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-b-green-90:focus{
  border-bottom-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-l-green-90:focus{
  border-left-color: rgba(102, 187, 8, 0.9);
}

.focus\:border-blue-90:focus{
  border-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-t-blue-90:focus{
  border-top-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-r-blue-90:focus{
  border-right-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-b-blue-90:focus{
  border-bottom-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-l-blue-90:focus{
  border-left-color: rgba(31, 168, 226, 0.9);
}

.focus\:border-orange-90:focus{
  border-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-t-orange-90:focus{
  border-top-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-r-orange-90:focus{
  border-right-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-b-orange-90:focus{
  border-bottom-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-l-orange-90:focus{
  border-left-color: rgba(247, 148, 14, 0.9);
}

.focus\:border-primary-darkest-90:focus{
  border-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-t-primary-darkest-90:focus{
  border-top-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-r-primary-darkest-90:focus{
  border-right-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-b-primary-darkest-90:focus{
  border-bottom-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-l-primary-darkest-90:focus{
  border-left-color: rgba(83, 15, 18, 0.9);
}

.focus\:border-primary-darker-90:focus{
  border-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-t-primary-darker-90:focus{
  border-top-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-r-primary-darker-90:focus{
  border-right-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-b-primary-darker-90:focus{
  border-bottom-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-l-primary-darker-90:focus{
  border-left-color: rgba(124, 23, 27, 0.9);
}

.focus\:border-primary-dark-90:focus{
  border-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-t-primary-dark-90:focus{
  border-top-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-r-primary-dark-90:focus{
  border-right-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-b-primary-dark-90:focus{
  border-bottom-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-l-primary-dark-90:focus{
  border-left-color: rgba(166, 30, 36, 0.9);
}

.focus\:border-primary-90:focus{
  border-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-t-primary-90:focus{
  border-top-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-r-primary-90:focus{
  border-right-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-b-primary-90:focus{
  border-bottom-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-l-primary-90:focus{
  border-left-color: rgba(207, 38, 45, 0.9);
}

.focus\:border-primary-light-90:focus{
  border-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-t-primary-light-90:focus{
  border-top-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-r-primary-light-90:focus{
  border-right-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-b-primary-light-90:focus{
  border-bottom-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-l-primary-light-90:focus{
  border-left-color: rgba(217, 81, 87, 0.9);
}

.focus\:border-primary-lighter-90:focus{
  border-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-t-primary-lighter-90:focus{
  border-top-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-r-primary-lighter-90:focus{
  border-right-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-b-primary-lighter-90:focus{
  border-bottom-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-l-primary-lighter-90:focus{
  border-left-color: rgba(226, 125, 129, 0.9);
}

.focus\:border-primary-lightest-90:focus{
  border-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-t-primary-lightest-90:focus{
  border-top-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-r-primary-lightest-90:focus{
  border-right-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-b-primary-lightest-90:focus{
  border-bottom-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-l-primary-lightest-90:focus{
  border-left-color: rgba(236, 168, 171, 0.9);
}

.focus\:border-secondary-darkest-90:focus{
  border-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-t-secondary-darkest-90:focus{
  border-top-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-r-secondary-darkest-90:focus{
  border-right-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-b-secondary-darkest-90:focus{
  border-bottom-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-l-secondary-darkest-90:focus{
  border-left-color: rgba(62, 69, 37, 0.9);
}

.focus\:border-secondary-darker-90:focus{
  border-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-t-secondary-darker-90:focus{
  border-top-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-r-secondary-darker-90:focus{
  border-right-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-b-secondary-darker-90:focus{
  border-bottom-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-l-secondary-darker-90:focus{
  border-left-color: rgba(94, 104, 55, 0.9);
}

.focus\:border-secondary-dark-90:focus{
  border-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-t-secondary-dark-90:focus{
  border-top-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-r-secondary-dark-90:focus{
  border-right-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-b-secondary-dark-90:focus{
  border-bottom-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-l-secondary-dark-90:focus{
  border-left-color: rgba(125, 138, 74, 0.9);
}

.focus\:border-secondary-90:focus{
  border-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-t-secondary-90:focus{
  border-top-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-r-secondary-90:focus{
  border-right-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-b-secondary-90:focus{
  border-bottom-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-l-secondary-90:focus{
  border-left-color: rgba(156, 173, 92, 0.9);
}

.focus\:border-secondary-light-90:focus{
  border-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-t-secondary-light-90:focus{
  border-top-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-r-secondary-light-90:focus{
  border-right-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-b-secondary-light-90:focus{
  border-bottom-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-l-secondary-light-90:focus{
  border-left-color: rgba(176, 189, 125, 0.9);
}

.focus\:border-secondary-lighter-90:focus{
  border-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-t-secondary-lighter-90:focus{
  border-top-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-r-secondary-lighter-90:focus{
  border-right-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-b-secondary-lighter-90:focus{
  border-bottom-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-l-secondary-lighter-90:focus{
  border-left-color: rgba(196, 206, 157, 0.9);
}

.focus\:border-secondary-lightest-90:focus{
  border-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-t-secondary-lightest-90:focus{
  border-top-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-r-secondary-lightest-90:focus{
  border-right-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-b-secondary-lightest-90:focus{
  border-bottom-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-l-secondary-lightest-90:focus{
  border-left-color: rgba(215, 222, 190, 0.9);
}

.focus\:border-tertiary-darkest-90:focus{
  border-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-t-tertiary-darkest-90:focus{
  border-top-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-r-tertiary-darkest-90:focus{
  border-right-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-b-tertiary-darkest-90:focus{
  border-bottom-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-l-tertiary-darkest-90:focus{
  border-left-color: rgba(15, 47, 33, 0.9);
}

.focus\:border-tertiary-darker-90:focus{
  border-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-t-tertiary-darker-90:focus{
  border-top-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-r-tertiary-darker-90:focus{
  border-right-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-b-tertiary-darker-90:focus{
  border-bottom-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-l-tertiary-darker-90:focus{
  border-left-color: rgba(26, 71, 49, 0.9);
}

.focus\:border-tertiary-dark-90:focus{
  border-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-t-tertiary-dark-90:focus{
  border-top-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-r-tertiary-dark-90:focus{
  border-right-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-b-tertiary-dark-90:focus{
  border-bottom-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-l-tertiary-dark-90:focus{
  border-left-color: rgba(31, 157, 85, 0.9);
}

.focus\:border-tertiary-90:focus{
  border-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-t-tertiary-90:focus{
  border-top-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-r-tertiary-90:focus{
  border-right-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-b-tertiary-90:focus{
  border-bottom-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-l-tertiary-90:focus{
  border-left-color: rgba(255, 197, 0, 0.9);
}

.focus\:border-tertiary-light-90:focus{
  border-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-t-tertiary-light-90:focus{
  border-top-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-r-tertiary-light-90:focus{
  border-right-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-b-tertiary-light-90:focus{
  border-bottom-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-l-tertiary-light-90:focus{
  border-left-color: rgba(81, 216, 138, 0.9);
}

.focus\:border-tertiary-lighter-90:focus{
  border-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-t-tertiary-lighter-90:focus{
  border-top-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-r-tertiary-lighter-90:focus{
  border-right-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-b-tertiary-lighter-90:focus{
  border-bottom-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-l-tertiary-lighter-90:focus{
  border-left-color: rgba(162, 245, 191, 0.9);
}

.focus\:border-tertiary-lightest-90:focus{
  border-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-t-tertiary-lightest-90:focus{
  border-top-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-r-tertiary-lightest-90:focus{
  border-right-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-b-tertiary-lightest-90:focus{
  border-bottom-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-l-tertiary-lightest-90:focus{
  border-left-color: rgba(227, 252, 236, 0.9);
}

.focus\:border-default-90:focus{
  border-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-t-default-90:focus{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-r-default-90:focus{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-b-default-90:focus{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.focus\:border-l-default-90:focus{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-border-90{
  border-color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:border-t-border-90{
  border-top-color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:border-r-border-90{
  border-right-color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:border-b-border-90{
  border-bottom-color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:border-l-border-90{
  border-left-color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:border-form-90{
  border-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-t-form-90{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-r-form-90{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-b-form-90{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-l-form-90{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-form-active-90{
  border-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-t-form-active-90{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-r-form-active-90{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-b-form-active-90{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-l-form-active-90{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-black-90{
  border-color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:border-t-black-90{
  border-top-color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:border-r-black-90{
  border-right-color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:border-b-black-90{
  border-bottom-color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:border-l-black-90{
  border-left-color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:border-grey-darkest-90{
  border-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-t-grey-darkest-90{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-r-grey-darkest-90{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-b-grey-darkest-90{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-l-grey-darkest-90{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-grey-darker-90{
  border-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-t-grey-darker-90{
  border-top-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-r-grey-darker-90{
  border-right-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-b-grey-darker-90{
  border-bottom-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-l-grey-darker-90{
  border-left-color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:border-grey-dark-90{
  border-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-t-grey-dark-90{
  border-top-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-r-grey-dark-90{
  border-right-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-b-grey-dark-90{
  border-bottom-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-l-grey-dark-90{
  border-left-color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:border-grey-90{
  border-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-t-grey-90{
  border-top-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-r-grey-90{
  border-right-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-b-grey-90{
  border-bottom-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-l-grey-90{
  border-left-color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:border-grey-light-90{
  border-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-t-grey-light-90{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-r-grey-light-90{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-b-grey-light-90{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-l-grey-light-90{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-grey-lighter-90{
  border-color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:border-t-grey-lighter-90{
  border-top-color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:border-r-grey-lighter-90{
  border-right-color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:border-b-grey-lighter-90{
  border-bottom-color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:border-l-grey-lighter-90{
  border-left-color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:border-grey-lightest-90{
  border-color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:border-t-grey-lightest-90{
  border-top-color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:border-r-grey-lightest-90{
  border-right-color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:border-b-grey-lightest-90{
  border-bottom-color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:border-l-grey-lightest-90{
  border-left-color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:border-white-90{
  border-color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:border-t-white-90{
  border-top-color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:border-r-white-90{
  border-right-color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:border-b-white-90{
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:border-l-white-90{
  border-left-color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:border-red-90{
  border-color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:border-t-red-90{
  border-top-color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:border-r-red-90{
  border-right-color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:border-b-red-90{
  border-bottom-color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:border-l-red-90{
  border-left-color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:border-green-90{
  border-color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:border-t-green-90{
  border-top-color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:border-r-green-90{
  border-right-color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:border-b-green-90{
  border-bottom-color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:border-l-green-90{
  border-left-color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:border-blue-90{
  border-color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:border-t-blue-90{
  border-top-color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:border-r-blue-90{
  border-right-color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:border-b-blue-90{
  border-bottom-color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:border-l-blue-90{
  border-left-color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:border-orange-90{
  border-color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:border-t-orange-90{
  border-top-color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:border-r-orange-90{
  border-right-color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:border-b-orange-90{
  border-bottom-color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:border-l-orange-90{
  border-left-color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:border-primary-darkest-90{
  border-color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:border-t-primary-darkest-90{
  border-top-color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:border-r-primary-darkest-90{
  border-right-color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:border-b-primary-darkest-90{
  border-bottom-color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:border-l-primary-darkest-90{
  border-left-color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:border-primary-darker-90{
  border-color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:border-t-primary-darker-90{
  border-top-color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:border-r-primary-darker-90{
  border-right-color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:border-b-primary-darker-90{
  border-bottom-color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:border-l-primary-darker-90{
  border-left-color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:border-primary-dark-90{
  border-color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:border-t-primary-dark-90{
  border-top-color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:border-r-primary-dark-90{
  border-right-color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:border-b-primary-dark-90{
  border-bottom-color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:border-l-primary-dark-90{
  border-left-color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:border-primary-90{
  border-color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:border-t-primary-90{
  border-top-color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:border-r-primary-90{
  border-right-color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:border-b-primary-90{
  border-bottom-color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:border-l-primary-90{
  border-left-color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:border-primary-light-90{
  border-color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:border-t-primary-light-90{
  border-top-color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:border-r-primary-light-90{
  border-right-color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:border-b-primary-light-90{
  border-bottom-color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:border-l-primary-light-90{
  border-left-color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:border-primary-lighter-90{
  border-color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:border-t-primary-lighter-90{
  border-top-color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:border-r-primary-lighter-90{
  border-right-color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:border-b-primary-lighter-90{
  border-bottom-color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:border-l-primary-lighter-90{
  border-left-color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:border-primary-lightest-90{
  border-color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:border-t-primary-lightest-90{
  border-top-color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:border-r-primary-lightest-90{
  border-right-color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:border-b-primary-lightest-90{
  border-bottom-color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:border-l-primary-lightest-90{
  border-left-color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:border-secondary-darkest-90{
  border-color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:border-t-secondary-darkest-90{
  border-top-color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:border-r-secondary-darkest-90{
  border-right-color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:border-b-secondary-darkest-90{
  border-bottom-color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:border-l-secondary-darkest-90{
  border-left-color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:border-secondary-darker-90{
  border-color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:border-t-secondary-darker-90{
  border-top-color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:border-r-secondary-darker-90{
  border-right-color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:border-b-secondary-darker-90{
  border-bottom-color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:border-l-secondary-darker-90{
  border-left-color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:border-secondary-dark-90{
  border-color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:border-t-secondary-dark-90{
  border-top-color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:border-r-secondary-dark-90{
  border-right-color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:border-b-secondary-dark-90{
  border-bottom-color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:border-l-secondary-dark-90{
  border-left-color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:border-secondary-90{
  border-color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:border-t-secondary-90{
  border-top-color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:border-r-secondary-90{
  border-right-color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:border-b-secondary-90{
  border-bottom-color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:border-l-secondary-90{
  border-left-color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:border-secondary-light-90{
  border-color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:border-t-secondary-light-90{
  border-top-color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:border-r-secondary-light-90{
  border-right-color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:border-b-secondary-light-90{
  border-bottom-color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:border-l-secondary-light-90{
  border-left-color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:border-secondary-lighter-90{
  border-color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:border-t-secondary-lighter-90{
  border-top-color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:border-r-secondary-lighter-90{
  border-right-color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:border-b-secondary-lighter-90{
  border-bottom-color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:border-l-secondary-lighter-90{
  border-left-color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:border-secondary-lightest-90{
  border-color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:border-t-secondary-lightest-90{
  border-top-color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:border-r-secondary-lightest-90{
  border-right-color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:border-b-secondary-lightest-90{
  border-bottom-color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:border-l-secondary-lightest-90{
  border-left-color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:border-tertiary-darkest-90{
  border-color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-darkest-90{
  border-top-color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-darkest-90{
  border-right-color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-darkest-90{
  border-bottom-color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-darkest-90{
  border-left-color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:border-tertiary-darker-90{
  border-color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-darker-90{
  border-top-color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-darker-90{
  border-right-color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-darker-90{
  border-bottom-color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-darker-90{
  border-left-color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:border-tertiary-dark-90{
  border-color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-dark-90{
  border-top-color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-dark-90{
  border-right-color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-dark-90{
  border-bottom-color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-dark-90{
  border-left-color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:border-tertiary-90{
  border-color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-90{
  border-top-color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-90{
  border-right-color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-90{
  border-bottom-color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-90{
  border-left-color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:border-tertiary-light-90{
  border-color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-light-90{
  border-top-color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-light-90{
  border-right-color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-light-90{
  border-bottom-color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-light-90{
  border-left-color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:border-tertiary-lighter-90{
  border-color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-lighter-90{
  border-top-color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-lighter-90{
  border-right-color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-lighter-90{
  border-bottom-color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-lighter-90{
  border-left-color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:border-tertiary-lightest-90{
  border-color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:border-t-tertiary-lightest-90{
  border-top-color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:border-r-tertiary-lightest-90{
  border-right-color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:border-b-tertiary-lightest-90{
  border-bottom-color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:border-l-tertiary-lightest-90{
  border-left-color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:border-default-90{
  border-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-t-default-90{
  border-top-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-r-default-90{
  border-right-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-b-default-90{
  border-bottom-color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:border-l-default-90{
  border-left-color: rgba(179, 188, 197, 0.9);
}

.text-border-90{
  color: rgba(230, 235, 245, 0.9);
}

.text-form-90{
  color: rgba(121, 130, 139, 0.9);
}

.text-form-active-90{
  color: rgba(66, 80, 92, 0.9);
}

.text-black-90{
  color: rgba(33, 37, 41, 0.9);
}

.text-grey-darkest-90{
  color: rgba(154, 165, 192, 0.9);
}

.text-grey-darker-90{
  color: rgba(154, 165, 192, 0.9);
}

.text-grey-dark-90{
  color: rgba(66, 80, 92, 0.9);
}

.text-grey-90{
  color: rgba(121, 130, 139, 0.9);
}

.text-grey-light-90{
  color: rgba(179, 188, 197, 0.9);
}

.text-grey-lighter-90{
  color: rgba(222, 228, 233, 0.9);
}

.text-grey-lightest-90{
  color: rgba(244, 246, 249, 0.9);
}

.text-white-90{
  color: rgba(255, 255, 255, 0.9);
}

.text-red-90{
  color: rgba(211, 26, 8, 0.9);
}

.text-green-90{
  color: rgba(102, 187, 8, 0.9);
}

.text-blue-90{
  color: rgba(31, 168, 226, 0.9);
}

.text-orange-90{
  color: rgba(247, 148, 14, 0.9);
}

.text-primary-darkest-90{
  color: rgba(83, 15, 18, 0.9);
}

.text-primary-darker-90{
  color: rgba(124, 23, 27, 0.9);
}

.text-primary-dark-90{
  color: rgba(166, 30, 36, 0.9);
}

.text-primary-90{
  color: rgba(207, 38, 45, 0.9);
}

.text-primary-light-90{
  color: rgba(217, 81, 87, 0.9);
}

.text-primary-lighter-90{
  color: rgba(226, 125, 129, 0.9);
}

.text-primary-lightest-90{
  color: rgba(236, 168, 171, 0.9);
}

.text-secondary-darkest-90{
  color: rgba(62, 69, 37, 0.9);
}

.text-secondary-darker-90{
  color: rgba(94, 104, 55, 0.9);
}

.text-secondary-dark-90{
  color: rgba(125, 138, 74, 0.9);
}

.text-secondary-90{
  color: rgba(156, 173, 92, 0.9);
}

.text-secondary-light-90{
  color: rgba(176, 189, 125, 0.9);
}

.text-secondary-lighter-90{
  color: rgba(196, 206, 157, 0.9);
}

.text-secondary-lightest-90{
  color: rgba(215, 222, 190, 0.9);
}

.text-tertiary-darkest-90{
  color: rgba(15, 47, 33, 0.9);
}

.text-tertiary-darker-90{
  color: rgba(26, 71, 49, 0.9);
}

.text-tertiary-dark-90{
  color: rgba(31, 157, 85, 0.9);
}

.text-tertiary-90{
  color: rgba(255, 197, 0, 0.9);
}

.text-tertiary-light-90{
  color: rgba(81, 216, 138, 0.9);
}

.text-tertiary-lighter-90{
  color: rgba(162, 245, 191, 0.9);
}

.text-tertiary-lightest-90{
  color: rgba(227, 252, 236, 0.9);
}

.hover\:text-border-90:hover{
  color: rgba(230, 235, 245, 0.9);
}

.hover\:text-form-90:hover{
  color: rgba(121, 130, 139, 0.9);
}

.hover\:text-form-active-90:hover{
  color: rgba(66, 80, 92, 0.9);
}

.hover\:text-black-90:hover{
  color: rgba(33, 37, 41, 0.9);
}

.hover\:text-grey-darkest-90:hover{
  color: rgba(154, 165, 192, 0.9);
}

.hover\:text-grey-darker-90:hover{
  color: rgba(154, 165, 192, 0.9);
}

.hover\:text-grey-dark-90:hover{
  color: rgba(66, 80, 92, 0.9);
}

.hover\:text-grey-90:hover{
  color: rgba(121, 130, 139, 0.9);
}

.hover\:text-grey-light-90:hover{
  color: rgba(179, 188, 197, 0.9);
}

.hover\:text-grey-lighter-90:hover{
  color: rgba(222, 228, 233, 0.9);
}

.hover\:text-grey-lightest-90:hover{
  color: rgba(244, 246, 249, 0.9);
}

.hover\:text-white-90:hover{
  color: rgba(255, 255, 255, 0.9);
}

.hover\:text-red-90:hover{
  color: rgba(211, 26, 8, 0.9);
}

.hover\:text-green-90:hover{
  color: rgba(102, 187, 8, 0.9);
}

.hover\:text-blue-90:hover{
  color: rgba(31, 168, 226, 0.9);
}

.hover\:text-orange-90:hover{
  color: rgba(247, 148, 14, 0.9);
}

.hover\:text-primary-darkest-90:hover{
  color: rgba(83, 15, 18, 0.9);
}

.hover\:text-primary-darker-90:hover{
  color: rgba(124, 23, 27, 0.9);
}

.hover\:text-primary-dark-90:hover{
  color: rgba(166, 30, 36, 0.9);
}

.hover\:text-primary-90:hover{
  color: rgba(207, 38, 45, 0.9);
}

.hover\:text-primary-light-90:hover{
  color: rgba(217, 81, 87, 0.9);
}

.hover\:text-primary-lighter-90:hover{
  color: rgba(226, 125, 129, 0.9);
}

.hover\:text-primary-lightest-90:hover{
  color: rgba(236, 168, 171, 0.9);
}

.hover\:text-secondary-darkest-90:hover{
  color: rgba(62, 69, 37, 0.9);
}

.hover\:text-secondary-darker-90:hover{
  color: rgba(94, 104, 55, 0.9);
}

.hover\:text-secondary-dark-90:hover{
  color: rgba(125, 138, 74, 0.9);
}

.hover\:text-secondary-90:hover{
  color: rgba(156, 173, 92, 0.9);
}

.hover\:text-secondary-light-90:hover{
  color: rgba(176, 189, 125, 0.9);
}

.hover\:text-secondary-lighter-90:hover{
  color: rgba(196, 206, 157, 0.9);
}

.hover\:text-secondary-lightest-90:hover{
  color: rgba(215, 222, 190, 0.9);
}

.hover\:text-tertiary-darkest-90:hover{
  color: rgba(15, 47, 33, 0.9);
}

.hover\:text-tertiary-darker-90:hover{
  color: rgba(26, 71, 49, 0.9);
}

.hover\:text-tertiary-dark-90:hover{
  color: rgba(31, 157, 85, 0.9);
}

.hover\:text-tertiary-90:hover{
  color: rgba(255, 197, 0, 0.9);
}

.hover\:text-tertiary-light-90:hover{
  color: rgba(81, 216, 138, 0.9);
}

.hover\:text-tertiary-lighter-90:hover{
  color: rgba(162, 245, 191, 0.9);
}

.hover\:text-tertiary-lightest-90:hover{
  color: rgba(227, 252, 236, 0.9);
}

.focus\:text-border-90:focus{
  color: rgba(230, 235, 245, 0.9);
}

.focus\:text-form-90:focus{
  color: rgba(121, 130, 139, 0.9);
}

.focus\:text-form-active-90:focus{
  color: rgba(66, 80, 92, 0.9);
}

.focus\:text-black-90:focus{
  color: rgba(33, 37, 41, 0.9);
}

.focus\:text-grey-darkest-90:focus{
  color: rgba(154, 165, 192, 0.9);
}

.focus\:text-grey-darker-90:focus{
  color: rgba(154, 165, 192, 0.9);
}

.focus\:text-grey-dark-90:focus{
  color: rgba(66, 80, 92, 0.9);
}

.focus\:text-grey-90:focus{
  color: rgba(121, 130, 139, 0.9);
}

.focus\:text-grey-light-90:focus{
  color: rgba(179, 188, 197, 0.9);
}

.focus\:text-grey-lighter-90:focus{
  color: rgba(222, 228, 233, 0.9);
}

.focus\:text-grey-lightest-90:focus{
  color: rgba(244, 246, 249, 0.9);
}

.focus\:text-white-90:focus{
  color: rgba(255, 255, 255, 0.9);
}

.focus\:text-red-90:focus{
  color: rgba(211, 26, 8, 0.9);
}

.focus\:text-green-90:focus{
  color: rgba(102, 187, 8, 0.9);
}

.focus\:text-blue-90:focus{
  color: rgba(31, 168, 226, 0.9);
}

.focus\:text-orange-90:focus{
  color: rgba(247, 148, 14, 0.9);
}

.focus\:text-primary-darkest-90:focus{
  color: rgba(83, 15, 18, 0.9);
}

.focus\:text-primary-darker-90:focus{
  color: rgba(124, 23, 27, 0.9);
}

.focus\:text-primary-dark-90:focus{
  color: rgba(166, 30, 36, 0.9);
}

.focus\:text-primary-90:focus{
  color: rgba(207, 38, 45, 0.9);
}

.focus\:text-primary-light-90:focus{
  color: rgba(217, 81, 87, 0.9);
}

.focus\:text-primary-lighter-90:focus{
  color: rgba(226, 125, 129, 0.9);
}

.focus\:text-primary-lightest-90:focus{
  color: rgba(236, 168, 171, 0.9);
}

.focus\:text-secondary-darkest-90:focus{
  color: rgba(62, 69, 37, 0.9);
}

.focus\:text-secondary-darker-90:focus{
  color: rgba(94, 104, 55, 0.9);
}

.focus\:text-secondary-dark-90:focus{
  color: rgba(125, 138, 74, 0.9);
}

.focus\:text-secondary-90:focus{
  color: rgba(156, 173, 92, 0.9);
}

.focus\:text-secondary-light-90:focus{
  color: rgba(176, 189, 125, 0.9);
}

.focus\:text-secondary-lighter-90:focus{
  color: rgba(196, 206, 157, 0.9);
}

.focus\:text-secondary-lightest-90:focus{
  color: rgba(215, 222, 190, 0.9);
}

.focus\:text-tertiary-darkest-90:focus{
  color: rgba(15, 47, 33, 0.9);
}

.focus\:text-tertiary-darker-90:focus{
  color: rgba(26, 71, 49, 0.9);
}

.focus\:text-tertiary-dark-90:focus{
  color: rgba(31, 157, 85, 0.9);
}

.focus\:text-tertiary-90:focus{
  color: rgba(255, 197, 0, 0.9);
}

.focus\:text-tertiary-light-90:focus{
  color: rgba(81, 216, 138, 0.9);
}

.focus\:text-tertiary-lighter-90:focus{
  color: rgba(162, 245, 191, 0.9);
}

.focus\:text-tertiary-lightest-90:focus{
  color: rgba(227, 252, 236, 0.9);
}

.focus\:text-border-90:focus{
  color: rgba(230, 235, 245, 0.9);
}

.focus\:text-form-90:focus{
  color: rgba(121, 130, 139, 0.9);
}

.focus\:text-form-active-90:focus{
  color: rgba(66, 80, 92, 0.9);
}

.focus\:text-black-90:focus{
  color: rgba(33, 37, 41, 0.9);
}

.focus\:text-grey-darkest-90:focus{
  color: rgba(154, 165, 192, 0.9);
}

.focus\:text-grey-darker-90:focus{
  color: rgba(154, 165, 192, 0.9);
}

.focus\:text-grey-dark-90:focus{
  color: rgba(66, 80, 92, 0.9);
}

.focus\:text-grey-90:focus{
  color: rgba(121, 130, 139, 0.9);
}

.focus\:text-grey-light-90:focus{
  color: rgba(179, 188, 197, 0.9);
}

.focus\:text-grey-lighter-90:focus{
  color: rgba(222, 228, 233, 0.9);
}

.focus\:text-grey-lightest-90:focus{
  color: rgba(244, 246, 249, 0.9);
}

.focus\:text-white-90:focus{
  color: rgba(255, 255, 255, 0.9);
}

.focus\:text-red-90:focus{
  color: rgba(211, 26, 8, 0.9);
}

.focus\:text-green-90:focus{
  color: rgba(102, 187, 8, 0.9);
}

.focus\:text-blue-90:focus{
  color: rgba(31, 168, 226, 0.9);
}

.focus\:text-orange-90:focus{
  color: rgba(247, 148, 14, 0.9);
}

.focus\:text-primary-darkest-90:focus{
  color: rgba(83, 15, 18, 0.9);
}

.focus\:text-primary-darker-90:focus{
  color: rgba(124, 23, 27, 0.9);
}

.focus\:text-primary-dark-90:focus{
  color: rgba(166, 30, 36, 0.9);
}

.focus\:text-primary-90:focus{
  color: rgba(207, 38, 45, 0.9);
}

.focus\:text-primary-light-90:focus{
  color: rgba(217, 81, 87, 0.9);
}

.focus\:text-primary-lighter-90:focus{
  color: rgba(226, 125, 129, 0.9);
}

.focus\:text-primary-lightest-90:focus{
  color: rgba(236, 168, 171, 0.9);
}

.focus\:text-secondary-darkest-90:focus{
  color: rgba(62, 69, 37, 0.9);
}

.focus\:text-secondary-darker-90:focus{
  color: rgba(94, 104, 55, 0.9);
}

.focus\:text-secondary-dark-90:focus{
  color: rgba(125, 138, 74, 0.9);
}

.focus\:text-secondary-90:focus{
  color: rgba(156, 173, 92, 0.9);
}

.focus\:text-secondary-light-90:focus{
  color: rgba(176, 189, 125, 0.9);
}

.focus\:text-secondary-lighter-90:focus{
  color: rgba(196, 206, 157, 0.9);
}

.focus\:text-secondary-lightest-90:focus{
  color: rgba(215, 222, 190, 0.9);
}

.focus\:text-tertiary-darkest-90:focus{
  color: rgba(15, 47, 33, 0.9);
}

.focus\:text-tertiary-darker-90:focus{
  color: rgba(26, 71, 49, 0.9);
}

.focus\:text-tertiary-dark-90:focus{
  color: rgba(31, 157, 85, 0.9);
}

.focus\:text-tertiary-90:focus{
  color: rgba(255, 197, 0, 0.9);
}

.focus\:text-tertiary-light-90:focus{
  color: rgba(81, 216, 138, 0.9);
}

.focus\:text-tertiary-lighter-90:focus{
  color: rgba(162, 245, 191, 0.9);
}

.focus\:text-tertiary-lightest-90:focus{
  color: rgba(227, 252, 236, 0.9);
}

.group:hover .group-hover\:text-border-90{
  color: rgba(230, 235, 245, 0.9);
}

.group:hover .group-hover\:text-form-90{
  color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:text-form-active-90{
  color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:text-black-90{
  color: rgba(33, 37, 41, 0.9);
}

.group:hover .group-hover\:text-grey-darkest-90{
  color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:text-grey-darker-90{
  color: rgba(154, 165, 192, 0.9);
}

.group:hover .group-hover\:text-grey-dark-90{
  color: rgba(66, 80, 92, 0.9);
}

.group:hover .group-hover\:text-grey-90{
  color: rgba(121, 130, 139, 0.9);
}

.group:hover .group-hover\:text-grey-light-90{
  color: rgba(179, 188, 197, 0.9);
}

.group:hover .group-hover\:text-grey-lighter-90{
  color: rgba(222, 228, 233, 0.9);
}

.group:hover .group-hover\:text-grey-lightest-90{
  color: rgba(244, 246, 249, 0.9);
}

.group:hover .group-hover\:text-white-90{
  color: rgba(255, 255, 255, 0.9);
}

.group:hover .group-hover\:text-red-90{
  color: rgba(211, 26, 8, 0.9);
}

.group:hover .group-hover\:text-green-90{
  color: rgba(102, 187, 8, 0.9);
}

.group:hover .group-hover\:text-blue-90{
  color: rgba(31, 168, 226, 0.9);
}

.group:hover .group-hover\:text-orange-90{
  color: rgba(247, 148, 14, 0.9);
}

.group:hover .group-hover\:text-primary-darkest-90{
  color: rgba(83, 15, 18, 0.9);
}

.group:hover .group-hover\:text-primary-darker-90{
  color: rgba(124, 23, 27, 0.9);
}

.group:hover .group-hover\:text-primary-dark-90{
  color: rgba(166, 30, 36, 0.9);
}

.group:hover .group-hover\:text-primary-90{
  color: rgba(207, 38, 45, 0.9);
}

.group:hover .group-hover\:text-primary-light-90{
  color: rgba(217, 81, 87, 0.9);
}

.group:hover .group-hover\:text-primary-lighter-90{
  color: rgba(226, 125, 129, 0.9);
}

.group:hover .group-hover\:text-primary-lightest-90{
  color: rgba(236, 168, 171, 0.9);
}

.group:hover .group-hover\:text-secondary-darkest-90{
  color: rgba(62, 69, 37, 0.9);
}

.group:hover .group-hover\:text-secondary-darker-90{
  color: rgba(94, 104, 55, 0.9);
}

.group:hover .group-hover\:text-secondary-dark-90{
  color: rgba(125, 138, 74, 0.9);
}

.group:hover .group-hover\:text-secondary-90{
  color: rgba(156, 173, 92, 0.9);
}

.group:hover .group-hover\:text-secondary-light-90{
  color: rgba(176, 189, 125, 0.9);
}

.group:hover .group-hover\:text-secondary-lighter-90{
  color: rgba(196, 206, 157, 0.9);
}

.group:hover .group-hover\:text-secondary-lightest-90{
  color: rgba(215, 222, 190, 0.9);
}

.group:hover .group-hover\:text-tertiary-darkest-90{
  color: rgba(15, 47, 33, 0.9);
}

.group:hover .group-hover\:text-tertiary-darker-90{
  color: rgba(26, 71, 49, 0.9);
}

.group:hover .group-hover\:text-tertiary-dark-90{
  color: rgba(31, 157, 85, 0.9);
}

.group:hover .group-hover\:text-tertiary-90{
  color: rgba(255, 197, 0, 0.9);
}

.group:hover .group-hover\:text-tertiary-light-90{
  color: rgba(81, 216, 138, 0.9);
}

.group:hover .group-hover\:text-tertiary-lighter-90{
  color: rgba(162, 245, 191, 0.9);
}

.group:hover .group-hover\:text-tertiary-lightest-90{
  color: rgba(227, 252, 236, 0.9);
}

.transform-none{
  -webkit-transform: none;
          transform: none;
}

.translate-x-1\/2{
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.translate-y-1\/2{
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.translate-x-full{
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.translate-y-full{
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.-translate-x-1\/2{
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.-translate-y-1\/2{
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.-translate-x-full{
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.-translate-y-full{
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.scale-90{
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.scale-x-90{
  -webkit-transform: scaleX(0.9);
          transform: scaleX(0.9);
}

.scale-y-90{
  -webkit-transform: scaleY(0.9);
          transform: scaleY(0.9);
}

.scale-100{
  -webkit-transform: scale(1);
          transform: scale(1);
}

.scale-x-100{
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.scale-y-100{
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.scale-110{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.scale-x-110{
  -webkit-transform: scaleX(1.1);
          transform: scaleX(1.1);
}

.scale-y-110{
  -webkit-transform: scaleY(1.1);
          transform: scaleY(1.1);
}

.rotate-90{
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rotate-180{
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rotate-270{
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.-rotate-90{
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.-rotate-180{
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.-rotate-270{
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
}

.skew-x-5{
  -webkit-transform: skewX(5deg);
          transform: skewX(5deg);
}

.skew-y-5{
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
}

.-skew-x-5{
  -webkit-transform: skewX(-5deg);
          transform: skewX(-5deg);
}

.-skew-y-5{
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
}

.transform-origin-t{
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
}

.transform-origin-r{
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}

.transform-origin-b{
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.transform-origin-l{
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}

.trans {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

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

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

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

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

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

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

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

@media (min-width: 420px){
  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

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

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

  .xs\: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));
  }

  .xs\: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)));
  }

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

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

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

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

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

  .xs\:-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));
  }

  .xs\:-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)));
  }

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

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

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

  .xs\:-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));
  }

  .xs\:-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)));
  }

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

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

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

  .xs\: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));
  }

  .xs\: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)));
  }

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

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

  .xs\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .xs\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .xs\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

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

  .xs\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .xs\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .xs\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .xs\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .xs\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .xs\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .xs\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .xs\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--divide-opacity));
  }

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

  .xs\:divide-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .xs\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .xs\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .xs\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .xs\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .xs\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .xs\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .xs\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .xs\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .xs\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .xs\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .xs\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .xs\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .xs\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .xs\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .xs\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .xs\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .xs\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .xs\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .xs\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .xs\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .xs\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .xs\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .xs\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .xs\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--divide-opacity));
  }

  .xs\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .xs\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .xs\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .xs\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .xs\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .xs\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .xs\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .xs\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: 0.5;
  }

  .xs\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .xs\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .xs\: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;
  }

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

  .xs\: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;
  }

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

  .xs\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xs\:bg-fixed{
    background-attachment: fixed;
  }

  .xs\:bg-local{
    background-attachment: local;
  }

  .xs\:bg-scroll{
    background-attachment: scroll;
  }

  .xs\:bg-clip-border{
    background-clip: border-box;
  }

  .xs\:bg-clip-padding{
    background-clip: padding-box;
  }

  .xs\:bg-clip-content{
    background-clip: content-box;
  }

  .xs\:bg-clip-text{
    background-clip: text;
  }

  .xs\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xs\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:bg-transparent{
    background-color: transparent;
  }

  .xs\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xs\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xs\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xs\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xs\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xs\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xs\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xs\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xs\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xs\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xs\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xs\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xs\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xs\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xs\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xs\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xs\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xs\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xs\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xs\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xs\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xs\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xs\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xs\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xs\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xs\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xs\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xs\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xs\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xs\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xs\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xs\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .xs\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xs\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xs\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xs\:hover\:bg-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xs\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xs\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xs\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xs\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xs\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xs\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xs\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xs\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .xs\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xs\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xs\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xs\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xs\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xs\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xs\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xs\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .xs\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xs\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xs\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xs\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xs\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xs\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xs\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xs\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xs\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xs\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .xs\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xs\:bg-none{
    background-image: none;
  }

  .xs\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .xs\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .xs\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xs\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xs\:from-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xs\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xs\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xs\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xs\:from-white{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xs\:from-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xs\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xs\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xs\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xs\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xs\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xs\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xs\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xs\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xs\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xs\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xs\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xs\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xs\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xs\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xs\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xs\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xs\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xs\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xs\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xs\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xs\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xs\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xs\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xs\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xs\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xs\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\: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));
  }

  .xs\:via-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xs\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xs\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xs\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xs\: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));
  }

  .xs\:via-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xs\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xs\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xs\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xs\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xs\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xs\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xs\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xs\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xs\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xs\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xs\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xs\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xs\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xs\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xs\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xs\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xs\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xs\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xs\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xs\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xs\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xs\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xs\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xs\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xs\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .xs\:to-form{
    --gradient-to-color: #79828B;
  }

  .xs\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .xs\:to-transparent{
    --gradient-to-color: transparent;
  }

  .xs\:to-black{
    --gradient-to-color: #212529;
  }

  .xs\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .xs\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .xs\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .xs\:to-grey{
    --gradient-to-color: #79828B;
  }

  .xs\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .xs\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .xs\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .xs\:to-white{
    --gradient-to-color: #ffffff;
  }

  .xs\:to-red{
    --gradient-to-color: #D31A08;
  }

  .xs\:to-green{
    --gradient-to-color: #66BB08;
  }

  .xs\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .xs\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .xs\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .xs\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .xs\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .xs\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .xs\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .xs\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .xs\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .xs\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .xs\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .xs\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .xs\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .xs\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .xs\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .xs\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .xs\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .xs\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .xs\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .xs\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .xs\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .xs\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .xs\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .xs\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xs\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xs\:hover\:from-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xs\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xs\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xs\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xs\:hover\:from-white:hover{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xs\:hover\:from-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xs\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xs\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xs\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xs\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xs\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xs\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xs\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xs\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xs\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xs\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xs\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xs\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xs\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xs\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xs\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xs\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xs\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xs\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xs\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xs\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xs\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xs\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xs\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xs\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xs\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xs\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\: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));
  }

  .xs\:hover\:via-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xs\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xs\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xs\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xs\: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));
  }

  .xs\:hover\:via-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xs\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xs\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xs\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xs\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xs\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xs\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xs\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xs\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xs\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xs\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xs\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xs\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xs\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xs\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xs\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xs\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xs\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xs\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xs\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xs\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xs\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xs\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xs\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xs\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xs\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .xs\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .xs\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .xs\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .xs\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .xs\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .xs\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .xs\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .xs\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .xs\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .xs\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .xs\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .xs\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .xs\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .xs\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .xs\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .xs\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .xs\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .xs\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .xs\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .xs\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .xs\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .xs\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .xs\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .xs\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .xs\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .xs\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .xs\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .xs\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .xs\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .xs\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .xs\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .xs\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .xs\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .xs\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .xs\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .xs\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .xs\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .xs\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xs\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xs\:focus\:from-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xs\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xs\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xs\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xs\:focus\:from-white:focus{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xs\:focus\:from-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xs\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xs\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xs\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xs\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xs\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xs\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xs\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xs\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xs\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xs\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xs\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xs\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xs\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xs\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xs\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xs\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xs\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xs\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xs\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xs\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xs\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xs\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xs\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xs\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xs\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xs\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\: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));
  }

  .xs\:focus\:via-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xs\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xs\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xs\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xs\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xs\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xs\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xs\: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));
  }

  .xs\:focus\:via-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xs\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xs\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xs\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xs\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xs\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xs\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xs\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xs\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xs\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xs\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xs\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xs\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xs\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xs\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xs\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xs\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xs\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xs\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xs\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xs\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xs\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xs\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xs\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xs\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xs\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .xs\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .xs\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .xs\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .xs\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .xs\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .xs\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .xs\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .xs\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .xs\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .xs\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .xs\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .xs\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .xs\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .xs\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .xs\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .xs\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .xs\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .xs\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .xs\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .xs\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .xs\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .xs\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .xs\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .xs\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .xs\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .xs\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .xs\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .xs\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .xs\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .xs\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .xs\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .xs\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .xs\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .xs\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .xs\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .xs\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .xs\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .xs\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .xs\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .xs\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .xs\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .xs\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .xs\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .xs\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .xs\:hover\:bg-opacity-50:hover{
    --bg-opacity: 0.5;
  }

  .xs\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .xs\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .xs\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .xs\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .xs\:focus\:bg-opacity-50:focus{
    --bg-opacity: 0.5;
  }

  .xs\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .xs\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .xs\:bg-bottom{
    background-position: bottom;
  }

  .xs\:bg-center{
    background-position: center;
  }

  .xs\:bg-left{
    background-position: left;
  }

  .xs\:bg-left-bottom{
    background-position: left bottom;
  }

  .xs\:bg-left-top{
    background-position: left top;
  }

  .xs\:bg-right{
    background-position: right;
  }

  .xs\:bg-right-bottom{
    background-position: right bottom;
  }

  .xs\:bg-right-top{
    background-position: right top;
  }

  .xs\:bg-top{
    background-position: top;
  }

  .xs\:bg-repeat{
    background-repeat: repeat;
  }

  .xs\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .xs\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .xs\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .xs\:bg-repeat-round{
    background-repeat: round;
  }

  .xs\:bg-repeat-space{
    background-repeat: space;
  }

  .xs\:bg-auto{
    background-size: auto;
  }

  .xs\:bg-cover{
    background-size: cover;
  }

  .xs\:bg-contain{
    background-size: contain;
  }

  .xs\:border-collapse{
    border-collapse: collapse;
  }

  .xs\:border-separate{
    border-collapse: separate;
  }

  .xs\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xs\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:border-transparent{
    border-color: transparent;
  }

  .xs\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xs\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xs\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xs\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xs\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xs\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xs\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xs\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xs\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xs\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xs\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xs\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xs\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xs\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xs\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xs\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xs\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xs\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xs\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xs\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xs\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xs\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xs\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xs\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xs\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xs\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xs\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xs\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xs\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xs\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xs\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xs\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .xs\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xs\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xs\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xs\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xs\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xs\:hover\:border-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xs\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xs\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xs\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xs\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xs\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xs\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xs\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xs\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xs\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xs\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xs\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xs\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xs\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xs\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xs\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xs\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xs\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xs\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xs\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xs\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .xs\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xs\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xs\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xs\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xs\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xs\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xs\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xs\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xs\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xs\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xs\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xs\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xs\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xs\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xs\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xs\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xs\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xs\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xs\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .xs\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xs\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xs\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xs\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xs\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xs\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xs\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xs\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xs\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xs\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xs\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xs\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xs\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xs\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xs\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xs\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xs\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xs\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xs\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xs\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xs\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xs\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .xs\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xs\:border-opacity-0{
    --border-opacity: 0;
  }

  .xs\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .xs\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .xs\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .xs\:border-opacity-100{
    --border-opacity: 1;
  }

  .xs\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .xs\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .xs\:hover\:border-opacity-50:hover{
    --border-opacity: 0.5;
  }

  .xs\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .xs\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .xs\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .xs\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .xs\:focus\:border-opacity-50:focus{
    --border-opacity: 0.5;
  }

  .xs\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .xs\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .xs\:rounded-none{
    border-radius: 0;
  }

  .xs\:rounded-xs{
    border-radius: 0.061rem;
  }

  .xs\:rounded-sm{
    border-radius: 0.125rem;
  }

  .xs\:rounded{
    border-radius: 0.25rem;
  }

  .xs\:rounded-lg{
    border-radius: 0.5rem;
  }

  .xs\:rounded-full{
    border-radius: 9999px;
  }

  .xs\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xs\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xs\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-t-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .xs\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .xs\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .xs\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .xs\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .xs\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .xs\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .xs\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .xs\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .xs\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .xs\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .xs\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .xs\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .xs\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .xs\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .xs\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .xs\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xs\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xs\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xs\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xs\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .xs\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .xs\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .xs\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-tl-xs{
    border-top-left-radius: 0.061rem;
  }

  .xs\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .xs\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .xs\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .xs\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .xs\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .xs\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .xs\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .xs\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .xs\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .xs\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .xs\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .xs\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .xs\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .xs\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .xs\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .xs\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .xs\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .xs\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .xs\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .xs\:border-solid{
    border-style: solid;
  }

  .xs\:border-dashed{
    border-style: dashed;
  }

  .xs\:border-dotted{
    border-style: dotted;
  }

  .xs\:border-double{
    border-style: double;
  }

  .xs\:border-none{
    border-style: none;
  }

  .xs\:border-0{
    border-width: 0;
  }

  .xs\:border-2{
    border-width: 2px;
  }

  .xs\:border-4{
    border-width: 4px;
  }

  .xs\:border-8{
    border-width: 8px;
  }

  .xs\:border{
    border-width: 1px;
  }

  .xs\:border-t-0{
    border-top-width: 0;
  }

  .xs\:border-r-0{
    border-right-width: 0;
  }

  .xs\:border-b-0{
    border-bottom-width: 0;
  }

  .xs\:border-l-0{
    border-left-width: 0;
  }

  .xs\:border-t-2{
    border-top-width: 2px;
  }

  .xs\:border-r-2{
    border-right-width: 2px;
  }

  .xs\:border-b-2{
    border-bottom-width: 2px;
  }

  .xs\:border-l-2{
    border-left-width: 2px;
  }

  .xs\:border-t-4{
    border-top-width: 4px;
  }

  .xs\:border-r-4{
    border-right-width: 4px;
  }

  .xs\:border-b-4{
    border-bottom-width: 4px;
  }

  .xs\:border-l-4{
    border-left-width: 4px;
  }

  .xs\:border-t-8{
    border-top-width: 8px;
  }

  .xs\:border-r-8{
    border-right-width: 8px;
  }

  .xs\:border-b-8{
    border-bottom-width: 8px;
  }

  .xs\:border-l-8{
    border-left-width: 8px;
  }

  .xs\:border-t{
    border-top-width: 1px;
  }

  .xs\:border-r{
    border-right-width: 1px;
  }

  .xs\:border-b{
    border-bottom-width: 1px;
  }

  .xs\:border-l{
    border-left-width: 1px;
  }

  .xs\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .xs\:box-content{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .xs\:cursor-auto{
    cursor: auto;
  }

  .xs\:cursor-default{
    cursor: default;
  }

  .xs\:cursor-pointer{
    cursor: pointer;
  }

  .xs\:cursor-wait{
    cursor: wait;
  }

  .xs\:cursor-text{
    cursor: text;
  }

  .xs\:cursor-move{
    cursor: move;
  }

  .xs\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .xs\:block{
    display: block;
  }

  .xs\:inline-block{
    display: inline-block;
  }

  .xs\:inline{
    display: inline;
  }

  .xs\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .xs\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .xs\:table{
    display: table;
  }

  .xs\:table-caption{
    display: table-caption;
  }

  .xs\:table-cell{
    display: table-cell;
  }

  .xs\:table-column{
    display: table-column;
  }

  .xs\:table-column-group{
    display: table-column-group;
  }

  .xs\:table-footer-group{
    display: table-footer-group;
  }

  .xs\:table-header-group{
    display: table-header-group;
  }

  .xs\:table-row-group{
    display: table-row-group;
  }

  .xs\:table-row{
    display: table-row;
  }

  .xs\:flow-root{
    display: flow-root;
  }

  .xs\:grid{
    display: grid;
  }

  .xs\:inline-grid{
    display: inline-grid;
  }

  .xs\:contents{
    display: contents;
  }

  .xs\:hidden{
    display: none;
  }

  .xs\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .xs\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .xs\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .xs\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .xs\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .xs\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .xs\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .xs\:place-items-auto{
    place-items: auto;
  }

  .xs\:place-items-start{
    place-items: start;
  }

  .xs\:place-items-end{
    place-items: end;
  }

  .xs\:place-items-center{
    place-items: center;
  }

  .xs\:place-items-stretch{
    place-items: stretch;
  }

  .xs\:place-content-center{
    place-content: center;
  }

  .xs\:place-content-start{
    place-content: start;
  }

  .xs\:place-content-end{
    place-content: end;
  }

  .xs\:place-content-between{
    place-content: space-between;
  }

  .xs\:place-content-around{
    place-content: space-around;
  }

  .xs\:place-content-evenly{
    place-content: space-evenly;
  }

  .xs\:place-content-stretch{
    place-content: stretch;
  }

  .xs\:place-self-auto{
    place-self: auto;
  }

  .xs\:place-self-start{
    place-self: start;
  }

  .xs\:place-self-end{
    place-self: end;
  }

  .xs\:place-self-center{
    place-self: center;
  }

  .xs\:place-self-stretch{
    place-self: stretch;
  }

  .xs\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .xs\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .xs\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .xs\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .xs\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .xs\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .xs\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .xs\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .xs\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .xs\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .xs\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .xs\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .xs\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .xs\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .xs\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .xs\:self-stretch{
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .xs\:justify-items-auto{
    justify-items: auto;
  }

  .xs\:justify-items-start{
    justify-items: start;
  }

  .xs\:justify-items-end{
    justify-items: end;
  }

  .xs\:justify-items-center{
    justify-items: center;
  }

  .xs\:justify-items-stretch{
    justify-items: stretch;
  }

  .xs\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xs\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xs\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .xs\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .xs\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .xs\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .xs\:justify-self-auto{
    justify-self: auto;
  }

  .xs\:justify-self-start{
    justify-self: start;
  }

  .xs\:justify-self-end{
    justify-self: end;
  }

  .xs\:justify-self-center{
    justify-self: center;
  }

  .xs\:justify-self-stretch{
    justify-self: stretch;
  }

  .xs\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .xs\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .xs\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .xs\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .xs\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .xs\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .xs\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .xs\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .xs\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .xs\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .xs\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .xs\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .xs\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .xs\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .xs\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .xs\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .xs\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .xs\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .xs\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .xs\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .xs\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .xs\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .xs\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .xs\:float-right{
    float: right;
  }

  .xs\:float-left{
    float: left;
  }

  .xs\:float-none{
    float: none;
  }

  .xs\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .xs\:clear-left{
    clear: left;
  }

  .xs\:clear-right{
    clear: right;
  }

  .xs\:clear-both{
    clear: both;
  }

  .xs\:clear-none{
    clear: none;
  }

  .xs\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .xs\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .xs\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .xs\:font-hairline{
    font-weight: 100;
  }

  .xs\:font-thin{
    font-weight: 200;
  }

  .xs\:font-light{
    font-weight: 300;
  }

  .xs\:font-normal{
    font-weight: 400;
  }

  .xs\:font-medium{
    font-weight: 500;
  }

  .xs\:font-semibold{
    font-weight: 600;
  }

  .xs\:font-bold{
    font-weight: 700;
  }

  .xs\:font-extrabold{
    font-weight: 800;
  }

  .xs\:font-black{
    font-weight: 900;
  }

  .xs\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .xs\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .xs\:hover\:font-light:hover{
    font-weight: 300;
  }

  .xs\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .xs\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .xs\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .xs\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .xs\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .xs\:hover\:font-black:hover{
    font-weight: 900;
  }

  .xs\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .xs\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .xs\:focus\:font-light:focus{
    font-weight: 300;
  }

  .xs\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .xs\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .xs\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .xs\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .xs\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .xs\:focus\:font-black:focus{
    font-weight: 900;
  }

  .xs\:h-0{
    height: 0;
  }

  .xs\:h-1{
    height: 0.25rem;
  }

  .xs\:h-2{
    height: 0.5rem;
  }

  .xs\:h-3{
    height: 0.75rem;
  }

  .xs\:h-4{
    height: 1rem;
  }

  .xs\:h-5{
    height: 1.25rem;
  }

  .xs\:h-6{
    height: 1.5rem;
  }

  .xs\:h-8{
    height: 2rem;
  }

  .xs\:h-10{
    height: 2.5rem;
  }

  .xs\:h-12{
    height: 3rem;
  }

  .xs\:h-14{
    height: 3.5rem;
  }

  .xs\:h-16{
    height: 4rem;
  }

  .xs\:h-20{
    height: 5rem;
  }

  .xs\:h-21{
    height: 5.25rem;
  }

  .xs\:h-24{
    height: 6rem;
  }

  .xs\:h-32{
    height: 8rem;
  }

  .xs\:h-36{
    height: 9rem;
  }

  .xs\:h-40{
    height: 10rem;
  }

  .xs\:h-44{
    height: 11rem;
  }

  .xs\:h-48{
    height: 12rem;
  }

  .xs\:h-56{
    height: 14rem;
  }

  .xs\:h-64{
    height: 16rem;
  }

  .xs\:h-544{
    height: 34rem;
  }

  .xs\:h-auto{
    height: auto;
  }

  .xs\:h-px{
    height: 1px;
  }

  .xs\:h-full{
    height: 100%;
  }

  .xs\:h-screen{
    height: 100vh;
  }

  .xs\:text-0{
    font-size: 0;
  }

  .xs\:text-xxs{
    font-size: .75rem;
  }

  .xs\:text-xs{
    font-size: .8125rem;
  }

  .xs\:text-sm{
    font-size: .875rem;
  }

  .xs\:text-base{
    font-size: .9375rem;
  }

  .xs\:text-lg{
    font-size: 1rem;
  }

  .xs\:text-2lg{
    font-size: 1.125rem;
  }

  .xs\:text-xl{
    font-size: 1.25rem;
  }

  .xs\:text-2xl{
    font-size: 1.5rem;
  }

  .xs\:text-3xl{
    font-size: 2rem;
  }

  .xs\:text-4xl{
    font-size: 2.25rem;
  }

  .xs\:text-5xl{
    font-size: 3rem;
  }

  .xs\:leading-none{
    line-height: 1;
  }

  .xs\:leading-tight{
    line-height: 1.25;
  }

  .xs\:leading-snug{
    line-height: 1.375;
  }

  .xs\:leading-normal{
    line-height: 1.5;
  }

  .xs\:leading-relaxed{
    line-height: 1.625;
  }

  .xs\:leading-loose{
    line-height: 2;
  }

  .xs\:list-inside{
    list-style-position: inside;
  }

  .xs\:list-outside{
    list-style-position: outside;
  }

  .xs\:list-none{
    list-style-type: none;
  }

  .xs\:list-disc{
    list-style-type: disc;
  }

  .xs\:list-decimal{
    list-style-type: decimal;
  }

  .xs\:m-0{
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs\:m-auto{
    margin: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .xs\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .xs\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs\:mt-0{
    margin-top: 0;
  }

  .xs\:mr-0{
    margin-right: 0;
  }

  .xs\:mb-0{
    margin-bottom: 0;
  }

  .xs\:ml-0{
    margin-left: 0;
  }

  .xs\:mt-1{
    margin-top: 0.25rem;
  }

  .xs\:mr-1{
    margin-right: 0.25rem;
  }

  .xs\:mb-1{
    margin-bottom: 0.25rem;
  }

  .xs\:ml-1{
    margin-left: 0.25rem;
  }

  .xs\:mt-2{
    margin-top: 0.5rem;
  }

  .xs\:mr-2{
    margin-right: 0.5rem;
  }

  .xs\:mb-2{
    margin-bottom: 0.5rem;
  }

  .xs\:ml-2{
    margin-left: 0.5rem;
  }

  .xs\:mt-3{
    margin-top: 0.75rem;
  }

  .xs\:mr-3{
    margin-right: 0.75rem;
  }

  .xs\:mb-3{
    margin-bottom: 0.75rem;
  }

  .xs\:ml-3{
    margin-left: 0.75rem;
  }

  .xs\:mt-4{
    margin-top: 1rem;
  }

  .xs\:mr-4{
    margin-right: 1rem;
  }

  .xs\:mb-4{
    margin-bottom: 1rem;
  }

  .xs\:ml-4{
    margin-left: 1rem;
  }

  .xs\:mt-5{
    margin-top: 1.25rem;
  }

  .xs\:mr-5{
    margin-right: 1.25rem;
  }

  .xs\:mb-5{
    margin-bottom: 1.25rem;
  }

  .xs\:ml-5{
    margin-left: 1.25rem;
  }

  .xs\:mt-6{
    margin-top: 1.5rem;
  }

  .xs\:mr-6{
    margin-right: 1.5rem;
  }

  .xs\:mb-6{
    margin-bottom: 1.5rem;
  }

  .xs\:ml-6{
    margin-left: 1.5rem;
  }

  .xs\:mt-8{
    margin-top: 2rem;
  }

  .xs\:mr-8{
    margin-right: 2rem;
  }

  .xs\:mb-8{
    margin-bottom: 2rem;
  }

  .xs\:ml-8{
    margin-left: 2rem;
  }

  .xs\:mt-10{
    margin-top: 2.5rem;
  }

  .xs\:mr-10{
    margin-right: 2.5rem;
  }

  .xs\:mb-10{
    margin-bottom: 2.5rem;
  }

  .xs\:ml-10{
    margin-left: 2.5rem;
  }

  .xs\:mt-12{
    margin-top: 3rem;
  }

  .xs\:mr-12{
    margin-right: 3rem;
  }

  .xs\:mb-12{
    margin-bottom: 3rem;
  }

  .xs\:ml-12{
    margin-left: 3rem;
  }

  .xs\:mt-14{
    margin-top: 3.5rem;
  }

  .xs\:mr-14{
    margin-right: 3.5rem;
  }

  .xs\:mb-14{
    margin-bottom: 3.5rem;
  }

  .xs\:ml-14{
    margin-left: 3.5rem;
  }

  .xs\:mt-16{
    margin-top: 4rem;
  }

  .xs\:mr-16{
    margin-right: 4rem;
  }

  .xs\:mb-16{
    margin-bottom: 4rem;
  }

  .xs\:ml-16{
    margin-left: 4rem;
  }

  .xs\:mt-20{
    margin-top: 5rem;
  }

  .xs\:mr-20{
    margin-right: 5rem;
  }

  .xs\:mb-20{
    margin-bottom: 5rem;
  }

  .xs\:ml-20{
    margin-left: 5rem;
  }

  .xs\:mt-24{
    margin-top: 6rem;
  }

  .xs\:mr-24{
    margin-right: 6rem;
  }

  .xs\:mb-24{
    margin-bottom: 6rem;
  }

  .xs\:ml-24{
    margin-left: 6rem;
  }

  .xs\:mt-32{
    margin-top: 8rem;
  }

  .xs\:mr-32{
    margin-right: 8rem;
  }

  .xs\:mb-32{
    margin-bottom: 8rem;
  }

  .xs\:ml-32{
    margin-left: 8rem;
  }

  .xs\:mt-36{
    margin-top: 9rem;
  }

  .xs\:mr-36{
    margin-right: 9rem;
  }

  .xs\:mb-36{
    margin-bottom: 9rem;
  }

  .xs\:ml-36{
    margin-left: 9rem;
  }

  .xs\:mt-40{
    margin-top: 10rem;
  }

  .xs\:mr-40{
    margin-right: 10rem;
  }

  .xs\:mb-40{
    margin-bottom: 10rem;
  }

  .xs\:ml-40{
    margin-left: 10rem;
  }

  .xs\:mt-44{
    margin-top: 11rem;
  }

  .xs\:mr-44{
    margin-right: 11rem;
  }

  .xs\:mb-44{
    margin-bottom: 11rem;
  }

  .xs\:ml-44{
    margin-left: 11rem;
  }

  .xs\:mt-48{
    margin-top: 12rem;
  }

  .xs\:mr-48{
    margin-right: 12rem;
  }

  .xs\:mb-48{
    margin-bottom: 12rem;
  }

  .xs\:ml-48{
    margin-left: 12rem;
  }

  .xs\:mt-56{
    margin-top: 14rem;
  }

  .xs\:mr-56{
    margin-right: 14rem;
  }

  .xs\:mb-56{
    margin-bottom: 14rem;
  }

  .xs\:ml-56{
    margin-left: 14rem;
  }

  .xs\:mt-64{
    margin-top: 16rem;
  }

  .xs\:mr-64{
    margin-right: 16rem;
  }

  .xs\:mb-64{
    margin-bottom: 16rem;
  }

  .xs\:ml-64{
    margin-left: 16rem;
  }

  .xs\:mt-auto{
    margin-top: auto;
  }

  .xs\:mr-auto{
    margin-right: auto;
  }

  .xs\:mb-auto{
    margin-bottom: auto;
  }

  .xs\:ml-auto{
    margin-left: auto;
  }

  .xs\:mt-px{
    margin-top: 1px;
  }

  .xs\:mr-px{
    margin-right: 1px;
  }

  .xs\:mb-px{
    margin-bottom: 1px;
  }

  .xs\:ml-px{
    margin-left: 1px;
  }

  .xs\:-mt-1{
    margin-top: -0.25rem;
  }

  .xs\:-mr-1{
    margin-right: -0.25rem;
  }

  .xs\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .xs\:-ml-1{
    margin-left: -0.25rem;
  }

  .xs\:-mt-2{
    margin-top: -0.5rem;
  }

  .xs\:-mr-2{
    margin-right: -0.5rem;
  }

  .xs\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .xs\:-ml-2{
    margin-left: -0.5rem;
  }

  .xs\:-mt-3{
    margin-top: -0.75rem;
  }

  .xs\:-mr-3{
    margin-right: -0.75rem;
  }

  .xs\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .xs\:-ml-3{
    margin-left: -0.75rem;
  }

  .xs\:-mt-4{
    margin-top: -1rem;
  }

  .xs\:-mr-4{
    margin-right: -1rem;
  }

  .xs\:-mb-4{
    margin-bottom: -1rem;
  }

  .xs\:-ml-4{
    margin-left: -1rem;
  }

  .xs\:-mt-5{
    margin-top: -1.25rem;
  }

  .xs\:-mr-5{
    margin-right: -1.25rem;
  }

  .xs\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .xs\:-ml-5{
    margin-left: -1.25rem;
  }

  .xs\:-mt-6{
    margin-top: -1.5rem;
  }

  .xs\:-mr-6{
    margin-right: -1.5rem;
  }

  .xs\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .xs\:-ml-6{
    margin-left: -1.5rem;
  }

  .xs\:-mt-8{
    margin-top: -2rem;
  }

  .xs\:-mr-8{
    margin-right: -2rem;
  }

  .xs\:-mb-8{
    margin-bottom: -2rem;
  }

  .xs\:-ml-8{
    margin-left: -2rem;
  }

  .xs\:-mt-10{
    margin-top: -2.5rem;
  }

  .xs\:-mr-10{
    margin-right: -2.5rem;
  }

  .xs\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .xs\:-ml-10{
    margin-left: -2.5rem;
  }

  .xs\:-mt-12{
    margin-top: -3rem;
  }

  .xs\:-mr-12{
    margin-right: -3rem;
  }

  .xs\:-mb-12{
    margin-bottom: -3rem;
  }

  .xs\:-ml-12{
    margin-left: -3rem;
  }

  .xs\:-mt-14{
    margin-top: -3.5rem;
  }

  .xs\:-mr-14{
    margin-right: -3.5rem;
  }

  .xs\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .xs\:-ml-14{
    margin-left: -3.5rem;
  }

  .xs\:-mt-16{
    margin-top: -4rem;
  }

  .xs\:-mr-16{
    margin-right: -4rem;
  }

  .xs\:-mb-16{
    margin-bottom: -4rem;
  }

  .xs\:-ml-16{
    margin-left: -4rem;
  }

  .xs\:-mt-20{
    margin-top: -5rem;
  }

  .xs\:-mr-20{
    margin-right: -5rem;
  }

  .xs\:-mb-20{
    margin-bottom: -5rem;
  }

  .xs\:-ml-20{
    margin-left: -5rem;
  }

  .xs\:-mt-24{
    margin-top: -6rem;
  }

  .xs\:-mr-24{
    margin-right: -6rem;
  }

  .xs\:-mb-24{
    margin-bottom: -6rem;
  }

  .xs\:-ml-24{
    margin-left: -6rem;
  }

  .xs\:-mt-32{
    margin-top: -8rem;
  }

  .xs\:-mr-32{
    margin-right: -8rem;
  }

  .xs\:-mb-32{
    margin-bottom: -8rem;
  }

  .xs\:-ml-32{
    margin-left: -8rem;
  }

  .xs\:-mt-36{
    margin-top: -9rem;
  }

  .xs\:-mr-36{
    margin-right: -9rem;
  }

  .xs\:-mb-36{
    margin-bottom: -9rem;
  }

  .xs\:-ml-36{
    margin-left: -9rem;
  }

  .xs\:-mt-40{
    margin-top: -10rem;
  }

  .xs\:-mr-40{
    margin-right: -10rem;
  }

  .xs\:-mb-40{
    margin-bottom: -10rem;
  }

  .xs\:-ml-40{
    margin-left: -10rem;
  }

  .xs\:-mt-44{
    margin-top: -11rem;
  }

  .xs\:-mr-44{
    margin-right: -11rem;
  }

  .xs\:-mb-44{
    margin-bottom: -11rem;
  }

  .xs\:-ml-44{
    margin-left: -11rem;
  }

  .xs\:-mt-48{
    margin-top: -12rem;
  }

  .xs\:-mr-48{
    margin-right: -12rem;
  }

  .xs\:-mb-48{
    margin-bottom: -12rem;
  }

  .xs\:-ml-48{
    margin-left: -12rem;
  }

  .xs\:-mt-56{
    margin-top: -14rem;
  }

  .xs\:-mr-56{
    margin-right: -14rem;
  }

  .xs\:-mb-56{
    margin-bottom: -14rem;
  }

  .xs\:-ml-56{
    margin-left: -14rem;
  }

  .xs\:-mt-64{
    margin-top: -16rem;
  }

  .xs\:-mr-64{
    margin-right: -16rem;
  }

  .xs\:-mb-64{
    margin-bottom: -16rem;
  }

  .xs\:-ml-64{
    margin-left: -16rem;
  }

  .xs\:-mt-px{
    margin-top: -1px;
  }

  .xs\:-mr-px{
    margin-right: -1px;
  }

  .xs\:-mb-px{
    margin-bottom: -1px;
  }

  .xs\:-ml-px{
    margin-left: -1px;
  }

  .xs\:max-h-full{
    max-height: 100%;
  }

  .xs\:max-h-screen{
    max-height: 100vh;
  }

  .xs\:max-w-none{
    max-width: none;
  }

  .xs\:max-w-xs{
    max-width: 20rem;
  }

  .xs\:max-w-sm{
    max-width: 24rem;
  }

  .xs\:max-w-md{
    max-width: 28rem;
  }

  .xs\:max-w-lg{
    max-width: 32rem;
  }

  .xs\:max-w-xl{
    max-width: 36rem;
  }

  .xs\:max-w-2xl{
    max-width: 42rem;
  }

  .xs\:max-w-3xl{
    max-width: 48rem;
  }

  .xs\:max-w-4xl{
    max-width: 56rem;
  }

  .xs\:max-w-5xl{
    max-width: 64rem;
  }

  .xs\:max-w-6xl{
    max-width: 72rem;
  }

  .xs\:max-w-full{
    max-width: 100%;
  }

  .xs\:max-w-screen-xs{
    max-width: 420px;
  }

  .xs\:max-w-screen-sm{
    max-width: 576px;
  }

  .xs\:max-w-screen-md{
    max-width: 768px;
  }

  .xs\:max-w-screen-lg{
    max-width: 992px;
  }

  .xs\:max-w-screen-xl{
    max-width: 1200px;
  }

  .xs\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .xs\:max-w-screen-hd{
    max-width: 1920px;
  }

  .xs\:min-h-0{
    min-height: 0;
  }

  .xs\:min-h-full{
    min-height: 100%;
  }

  .xs\:min-h-screen{
    min-height: 100vh;
  }

  .xs\:min-w-0{
    min-width: 0;
  }

  .xs\:min-w-1{
    min-width: 0.25rem;
  }

  .xs\:min-w-2{
    min-width: 0.5rem;
  }

  .xs\:min-w-3{
    min-width: 0.75rem;
  }

  .xs\:min-w-4{
    min-width: 1rem;
  }

  .xs\:min-w-5{
    min-width: 1.25rem;
  }

  .xs\:min-w-6{
    min-width: 1.5rem;
  }

  .xs\:min-w-8{
    min-width: 2rem;
  }

  .xs\:min-w-10{
    min-width: 2.5rem;
  }

  .xs\:min-w-12{
    min-width: 3rem;
  }

  .xs\:min-w-14{
    min-width: 3.5rem;
  }

  .xs\:min-w-16{
    min-width: 4rem;
  }

  .xs\:min-w-20{
    min-width: 5rem;
  }

  .xs\:min-w-24{
    min-width: 6rem;
  }

  .xs\:min-w-32{
    min-width: 8rem;
  }

  .xs\:min-w-36{
    min-width: 9rem;
  }

  .xs\:min-w-40{
    min-width: 10rem;
  }

  .xs\:min-w-44{
    min-width: 11rem;
  }

  .xs\:min-w-48{
    min-width: 12rem;
  }

  .xs\:min-w-56{
    min-width: 14rem;
  }

  .xs\:min-w-64{
    min-width: 16rem;
  }

  .xs\:min-w-px{
    min-width: 1px;
  }

  .xs\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .xs\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .xs\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .xs\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .xs\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .xs\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .xs\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .xs\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .xs\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .xs\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .xs\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .xs\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .xs\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .xs\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .xs\:opacity-0{
    opacity: 0;
  }

  .xs\:opacity-25{
    opacity: 0.25;
  }

  .xs\:opacity-50{
    opacity: 0.5;
  }

  .xs\:opacity-75{
    opacity: 0.75;
  }

  .xs\:opacity-100{
    opacity: 1;
  }

  .xs\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .xs\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .xs\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .xs\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .xs\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .xs\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .xs\:overflow-auto{
    overflow: auto;
  }

  .xs\:overflow-hidden{
    overflow: hidden;
  }

  .xs\:overflow-visible{
    overflow: visible;
  }

  .xs\:overflow-scroll{
    overflow: scroll;
  }

  .xs\:overflow-x-auto{
    overflow-x: auto;
  }

  .xs\:overflow-y-auto{
    overflow-y: auto;
  }

  .xs\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .xs\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .xs\:overflow-x-visible{
    overflow-x: visible;
  }

  .xs\:overflow-y-visible{
    overflow-y: visible;
  }

  .xs\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .xs\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .xs\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .xs\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .xs\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .xs\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .xs\:overscroll-none{
    overscroll-behavior: none;
  }

  .xs\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .xs\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .xs\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .xs\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .xs\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .xs\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .xs\:p-0{
    padding: 0;
  }

  .xs\:p-1{
    padding: 0.25rem;
  }

  .xs\:p-2{
    padding: 0.5rem;
  }

  .xs\:p-3{
    padding: 0.75rem;
  }

  .xs\:p-4{
    padding: 1rem;
  }

  .xs\:p-5{
    padding: 1.25rem;
  }

  .xs\:p-6{
    padding: 1.5rem;
  }

  .xs\:p-8{
    padding: 2rem;
  }

  .xs\:p-10{
    padding: 2.5rem;
  }

  .xs\:p-12{
    padding: 3rem;
  }

  .xs\:p-14{
    padding: 3.5rem;
  }

  .xs\:p-16{
    padding: 4rem;
  }

  .xs\:p-20{
    padding: 5rem;
  }

  .xs\:p-21{
    padding: 5.25rem;
  }

  .xs\:p-24{
    padding: 6rem;
  }

  .xs\:p-32{
    padding: 8rem;
  }

  .xs\:p-36{
    padding: 9rem;
  }

  .xs\:p-40{
    padding: 10rem;
  }

  .xs\:p-44{
    padding: 11rem;
  }

  .xs\:p-48{
    padding: 12rem;
  }

  .xs\:p-56{
    padding: 14rem;
  }

  .xs\:p-64{
    padding: 16rem;
  }

  .xs\:p-px{
    padding: 1px;
  }

  .xs\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .xs\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .xs\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .xs\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xs\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .xs\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .xs\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .xs\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .xs\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xs\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xs\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xs\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xs\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xs\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xs\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xs\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xs\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xs\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xs\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xs\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xs\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .xs\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .xs\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xs\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xs\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xs\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xs\:py-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .xs\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .xs\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xs\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xs\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xs\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xs\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xs\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xs\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xs\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xs\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xs\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xs\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xs\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xs\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xs\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xs\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xs\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xs\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xs\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .xs\:pt-0{
    padding-top: 0;
  }

  .xs\:pr-0{
    padding-right: 0;
  }

  .xs\:pb-0{
    padding-bottom: 0;
  }

  .xs\:pl-0{
    padding-left: 0;
  }

  .xs\:pt-1{
    padding-top: 0.25rem;
  }

  .xs\:pr-1{
    padding-right: 0.25rem;
  }

  .xs\:pb-1{
    padding-bottom: 0.25rem;
  }

  .xs\:pl-1{
    padding-left: 0.25rem;
  }

  .xs\:pt-2{
    padding-top: 0.5rem;
  }

  .xs\:pr-2{
    padding-right: 0.5rem;
  }

  .xs\:pb-2{
    padding-bottom: 0.5rem;
  }

  .xs\:pl-2{
    padding-left: 0.5rem;
  }

  .xs\:pt-3{
    padding-top: 0.75rem;
  }

  .xs\:pr-3{
    padding-right: 0.75rem;
  }

  .xs\:pb-3{
    padding-bottom: 0.75rem;
  }

  .xs\:pl-3{
    padding-left: 0.75rem;
  }

  .xs\:pt-4{
    padding-top: 1rem;
  }

  .xs\:pr-4{
    padding-right: 1rem;
  }

  .xs\:pb-4{
    padding-bottom: 1rem;
  }

  .xs\:pl-4{
    padding-left: 1rem;
  }

  .xs\:pt-5{
    padding-top: 1.25rem;
  }

  .xs\:pr-5{
    padding-right: 1.25rem;
  }

  .xs\:pb-5{
    padding-bottom: 1.25rem;
  }

  .xs\:pl-5{
    padding-left: 1.25rem;
  }

  .xs\:pt-6{
    padding-top: 1.5rem;
  }

  .xs\:pr-6{
    padding-right: 1.5rem;
  }

  .xs\:pb-6{
    padding-bottom: 1.5rem;
  }

  .xs\:pl-6{
    padding-left: 1.5rem;
  }

  .xs\:pt-8{
    padding-top: 2rem;
  }

  .xs\:pr-8{
    padding-right: 2rem;
  }

  .xs\:pb-8{
    padding-bottom: 2rem;
  }

  .xs\:pl-8{
    padding-left: 2rem;
  }

  .xs\:pt-10{
    padding-top: 2.5rem;
  }

  .xs\:pr-10{
    padding-right: 2.5rem;
  }

  .xs\:pb-10{
    padding-bottom: 2.5rem;
  }

  .xs\:pl-10{
    padding-left: 2.5rem;
  }

  .xs\:pt-12{
    padding-top: 3rem;
  }

  .xs\:pr-12{
    padding-right: 3rem;
  }

  .xs\:pb-12{
    padding-bottom: 3rem;
  }

  .xs\:pl-12{
    padding-left: 3rem;
  }

  .xs\:pt-14{
    padding-top: 3.5rem;
  }

  .xs\:pr-14{
    padding-right: 3.5rem;
  }

  .xs\:pb-14{
    padding-bottom: 3.5rem;
  }

  .xs\:pl-14{
    padding-left: 3.5rem;
  }

  .xs\:pt-16{
    padding-top: 4rem;
  }

  .xs\:pr-16{
    padding-right: 4rem;
  }

  .xs\:pb-16{
    padding-bottom: 4rem;
  }

  .xs\:pl-16{
    padding-left: 4rem;
  }

  .xs\:pt-20{
    padding-top: 5rem;
  }

  .xs\:pr-20{
    padding-right: 5rem;
  }

  .xs\:pb-20{
    padding-bottom: 5rem;
  }

  .xs\:pl-20{
    padding-left: 5rem;
  }

  .xs\:pt-21{
    padding-top: 5.25rem;
  }

  .xs\:pr-21{
    padding-right: 5.25rem;
  }

  .xs\:pb-21{
    padding-bottom: 5.25rem;
  }

  .xs\:pl-21{
    padding-left: 5.25rem;
  }

  .xs\:pt-24{
    padding-top: 6rem;
  }

  .xs\:pr-24{
    padding-right: 6rem;
  }

  .xs\:pb-24{
    padding-bottom: 6rem;
  }

  .xs\:pl-24{
    padding-left: 6rem;
  }

  .xs\:pt-32{
    padding-top: 8rem;
  }

  .xs\:pr-32{
    padding-right: 8rem;
  }

  .xs\:pb-32{
    padding-bottom: 8rem;
  }

  .xs\:pl-32{
    padding-left: 8rem;
  }

  .xs\:pt-36{
    padding-top: 9rem;
  }

  .xs\:pr-36{
    padding-right: 9rem;
  }

  .xs\:pb-36{
    padding-bottom: 9rem;
  }

  .xs\:pl-36{
    padding-left: 9rem;
  }

  .xs\:pt-40{
    padding-top: 10rem;
  }

  .xs\:pr-40{
    padding-right: 10rem;
  }

  .xs\:pb-40{
    padding-bottom: 10rem;
  }

  .xs\:pl-40{
    padding-left: 10rem;
  }

  .xs\:pt-44{
    padding-top: 11rem;
  }

  .xs\:pr-44{
    padding-right: 11rem;
  }

  .xs\:pb-44{
    padding-bottom: 11rem;
  }

  .xs\:pl-44{
    padding-left: 11rem;
  }

  .xs\:pt-48{
    padding-top: 12rem;
  }

  .xs\:pr-48{
    padding-right: 12rem;
  }

  .xs\:pb-48{
    padding-bottom: 12rem;
  }

  .xs\:pl-48{
    padding-left: 12rem;
  }

  .xs\:pt-56{
    padding-top: 14rem;
  }

  .xs\:pr-56{
    padding-right: 14rem;
  }

  .xs\:pb-56{
    padding-bottom: 14rem;
  }

  .xs\:pl-56{
    padding-left: 14rem;
  }

  .xs\:pt-64{
    padding-top: 16rem;
  }

  .xs\:pr-64{
    padding-right: 16rem;
  }

  .xs\:pb-64{
    padding-bottom: 16rem;
  }

  .xs\:pl-64{
    padding-left: 16rem;
  }

  .xs\:pt-px{
    padding-top: 1px;
  }

  .xs\:pr-px{
    padding-right: 1px;
  }

  .xs\:pb-px{
    padding-bottom: 1px;
  }

  .xs\:pl-px{
    padding-left: 1px;
  }

  .xs\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .xs\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .xs\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .xs\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .xs\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:placeholder-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .xs\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .xs\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color: transparent;
  }

  .xs\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .xs\:focus\:placeholder-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xs\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:placeholder-opacity-25::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:placeholder-opacity-50::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:placeholder-opacity-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .xs\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .xs\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .xs\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .xs\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xs\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

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

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

  .xs\:static{
    position: static;
  }

  .xs\:fixed{
    position: fixed;
  }

  .xs\:absolute{
    position: absolute;
  }

  .xs\:relative{
    position: relative;
  }

  .xs\:sticky{
    position: sticky;
  }

  .xs\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xs\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xs\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .xs\:inset-x-0{
    right: 0;
    left: 0;
  }

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

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

  .xs\:top-0{
    top: 0;
  }

  .xs\:right-0{
    right: 0;
  }

  .xs\:bottom-0{
    bottom: 0;
  }

  .xs\:left-0{
    left: 0;
  }

  .xs\:top-auto{
    top: auto;
  }

  .xs\:right-auto{
    right: auto;
  }

  .xs\:bottom-auto{
    bottom: auto;
  }

  .xs\:left-auto{
    left: auto;
  }

  .xs\:resize-none{
    resize: none;
  }

  .xs\:resize-y{
    resize: vertical;
  }

  .xs\:resize-x{
    resize: horizontal;
  }

  .xs\:resize{
    resize: both;
  }

  .xs\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xs\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xs\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xs\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xs\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xs\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xs\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xs\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xs\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xs\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xs\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xs\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xs\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xs\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xs\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xs\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xs\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xs\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xs\:fill-current{
    fill: currentColor;
  }

  .xs\:stroke-current{
    stroke: currentColor;
  }

  .xs\:stroke-0{
    stroke-width: 0;
  }

  .xs\:stroke-1{
    stroke-width: 1;
  }

  .xs\:stroke-2{
    stroke-width: 2;
  }

  .xs\:table-auto{
    table-layout: auto;
  }

  .xs\:table-fixed{
    table-layout: fixed;
  }

  .xs\:text-left{
    text-align: left;
  }

  .xs\:text-center{
    text-align: center;
  }

  .xs\:text-right{
    text-align: right;
  }

  .xs\:text-justify{
    text-align: justify;
  }

  .xs\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xs\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:text-transparent{
    color: transparent;
  }

  .xs\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xs\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xs\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xs\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xs\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xs\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xs\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xs\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xs\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xs\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xs\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xs\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xs\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xs\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xs\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xs\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xs\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xs\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xs\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xs\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xs\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xs\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xs\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xs\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xs\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xs\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xs\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xs\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xs\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xs\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xs\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xs\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:hover\:text-transparent:hover{
    color: transparent;
  }

  .xs\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xs\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xs\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xs\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xs\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xs\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xs\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xs\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xs\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xs\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xs\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xs\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xs\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xs\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xs\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xs\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xs\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xs\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xs\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xs\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xs\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xs\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xs\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xs\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xs\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xs\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:focus\:text-transparent:focus{
    color: transparent;
  }

  .xs\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xs\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xs\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xs\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xs\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xs\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xs\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xs\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xs\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xs\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xs\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xs\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xs\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xs\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xs\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xs\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xs\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xs\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xs\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:focus\:text-transparent:focus{
    color: transparent;
  }

  .xs\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xs\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xs\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xs\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xs\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xs\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xs\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xs\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xs\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xs\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xs\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xs\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xs\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xs\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xs\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xs\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xs\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xs\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xs\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xs\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xs\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xs\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .xs\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xs\:text-opacity-0{
    --text-opacity: 0;
  }

  .xs\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .xs\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .xs\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .xs\:text-opacity-100{
    --text-opacity: 1;
  }

  .xs\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .xs\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .xs\:hover\:text-opacity-50:hover{
    --text-opacity: 0.5;
  }

  .xs\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .xs\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .xs\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .xs\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .xs\:focus\:text-opacity-50:focus{
    --text-opacity: 0.5;
  }

  .xs\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .xs\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .xs\:italic{
    font-style: italic;
  }

  .xs\:not-italic{
    font-style: normal;
  }

  .xs\:uppercase{
    text-transform: uppercase;
  }

  .xs\:lowercase{
    text-transform: lowercase;
  }

  .xs\:capitalize{
    text-transform: capitalize;
  }

  .xs\:normal-case{
    text-transform: none;
  }

  .xs\:underline{
    text-decoration: underline;
  }

  .xs\:line-through{
    text-decoration: line-through;
  }

  .xs\:no-underline{
    text-decoration: none;
  }

  .xs\:hover\:underline:hover{
    text-decoration: underline;
  }

  .xs\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .xs\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .xs\:focus\:underline:focus{
    text-decoration: underline;
  }

  .xs\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .xs\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .xs\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xs\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xs\:ordinal, .xs\:slashed-zero, .xs\:lining-nums, .xs\:oldstyle-nums, .xs\:proportional-nums, .xs\:tabular-nums, .xs\:diagonal-fractions, .xs\: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);
  }

  .xs\:normal-nums{
    font-variant-numeric: normal;
  }

  .xs\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .xs\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .xs\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .xs\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .xs\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .xs\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .xs\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .xs\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .xs\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .xs\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .xs\:tracking-normal{
    letter-spacing: 0;
  }

  .xs\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .xs\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .xs\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .xs\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xs\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xs\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .xs\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .xs\:align-baseline{
    vertical-align: baseline;
  }

  .xs\:align-top{
    vertical-align: top;
  }

  .xs\:align-middle{
    vertical-align: middle;
  }

  .xs\:align-bottom{
    vertical-align: bottom;
  }

  .xs\:align-text-top{
    vertical-align: text-top;
  }

  .xs\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .xs\:visible{
    visibility: visible;
  }

  .xs\:invisible{
    visibility: hidden;
  }

  .xs\:whitespace-normal{
    white-space: normal;
  }

  .xs\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .xs\:whitespace-pre{
    white-space: pre;
  }

  .xs\:whitespace-pre-line{
    white-space: pre-line;
  }

  .xs\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .xs\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .xs\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .xs\:break-all{
    word-break: break-all;
  }

  .xs\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xs\:w-0{
    width: 0;
  }

  .xs\:w-1{
    width: 0.25rem;
  }

  .xs\:w-2{
    width: 0.5rem;
  }

  .xs\:w-3{
    width: 0.75rem;
  }

  .xs\:w-4{
    width: 1rem;
  }

  .xs\:w-5{
    width: 1.25rem;
  }

  .xs\:w-6{
    width: 1.5rem;
  }

  .xs\:w-8{
    width: 2rem;
  }

  .xs\:w-10{
    width: 2.5rem;
  }

  .xs\:w-12{
    width: 3rem;
  }

  .xs\:w-14{
    width: 3.5rem;
  }

  .xs\:w-16{
    width: 4rem;
  }

  .xs\:w-20{
    width: 5rem;
  }

  .xs\:w-24{
    width: 6rem;
  }

  .xs\:w-32{
    width: 8rem;
  }

  .xs\:w-36{
    width: 9rem;
  }

  .xs\:w-40{
    width: 10rem;
  }

  .xs\:w-44{
    width: 11rem;
  }

  .xs\:w-48{
    width: 12rem;
  }

  .xs\:w-56{
    width: 14rem;
  }

  .xs\:w-64{
    width: 16rem;
  }

  .xs\:w-auto{
    width: auto;
  }

  .xs\:w-px{
    width: 1px;
  }

  .xs\:w-1\/2{
    width: 50%;
  }

  .xs\:w-1\/3{
    width: 33.333333%;
  }

  .xs\:w-2\/3{
    width: 66.666667%;
  }

  .xs\:w-1\/4{
    width: 25%;
  }

  .xs\:w-2\/4{
    width: 50%;
  }

  .xs\:w-3\/4{
    width: 75%;
  }

  .xs\:w-1\/5{
    width: 20%;
  }

  .xs\:w-2\/5{
    width: 40%;
  }

  .xs\:w-3\/5{
    width: 60%;
  }

  .xs\:w-4\/5{
    width: 80%;
  }

  .xs\:w-1\/6{
    width: 16.666667%;
  }

  .xs\:w-2\/6{
    width: 33.333333%;
  }

  .xs\:w-3\/6{
    width: 50%;
  }

  .xs\:w-4\/6{
    width: 66.666667%;
  }

  .xs\:w-5\/6{
    width: 83.333333%;
  }

  .xs\:w-1\/12{
    width: 8.333333%;
  }

  .xs\:w-2\/12{
    width: 16.666667%;
  }

  .xs\:w-3\/12{
    width: 25%;
  }

  .xs\:w-4\/12{
    width: 33.333333%;
  }

  .xs\:w-5\/12{
    width: 41.666667%;
  }

  .xs\:w-6\/12{
    width: 50%;
  }

  .xs\:w-7\/12{
    width: 58.333333%;
  }

  .xs\:w-8\/12{
    width: 66.666667%;
  }

  .xs\:w-9\/12{
    width: 75%;
  }

  .xs\:w-10\/12{
    width: 83.333333%;
  }

  .xs\:w-11\/12{
    width: 91.666667%;
  }

  .xs\:w-full{
    width: 100%;
  }

  .xs\:w-screen{
    width: 100vw;
  }

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

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

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

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

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

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

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

  .xs\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .xs\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .xs\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .xs\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .xs\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .xs\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .xs\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .xs\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .xs\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .xs\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .xs\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .xs\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .xs\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .xs\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .xs\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .xs\:gap-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .xs\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .xs\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .xs\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .xs\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .xs\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .xs\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .xs\:col-gap-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .xs\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .xs\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .xs\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .xs\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .xs\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .xs\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .xs\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .xs\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .xs\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .xs\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .xs\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .xs\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .xs\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .xs\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .xs\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .xs\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .xs\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .xs\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .xs\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .xs\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .xs\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .xs\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .xs\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .xs\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .xs\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .xs\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .xs\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .xs\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .xs\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .xs\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .xs\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .xs\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .xs\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .xs\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .xs\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .xs\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .xs\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .xs\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .xs\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .xs\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .xs\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .xs\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .xs\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .xs\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .xs\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .xs\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .xs\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .xs\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .xs\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .xs\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .xs\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .xs\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .xs\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .xs\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .xs\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .xs\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .xs\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .xs\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .xs\:row-gap-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .xs\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .xs\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .xs\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .xs\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .xs\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .xs\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .xs\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .xs\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .xs\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .xs\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .xs\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .xs\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .xs\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .xs\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .xs\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .xs\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .xs\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .xs\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .xs\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .xs\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .xs\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .xs\:gap-y-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .xs\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .xs\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .xs\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .xs\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .xs\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .xs\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .xs\:grid-flow-row{
    grid-auto-flow: row;
  }

  .xs\:grid-flow-col{
    grid-auto-flow: column;
  }

  .xs\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .xs\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .xs\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xs\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xs\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xs\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xs\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xs\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xs\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xs\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xs\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xs\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xs\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xs\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xs\:grid-cols-none{
    grid-template-columns: none;
  }

  .xs\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .xs\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .xs\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .xs\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xs\:col-start-1{
    grid-column-start: 1;
  }

  .xs\:col-start-2{
    grid-column-start: 2;
  }

  .xs\:col-start-3{
    grid-column-start: 3;
  }

  .xs\:col-start-4{
    grid-column-start: 4;
  }

  .xs\:col-start-5{
    grid-column-start: 5;
  }

  .xs\:col-start-6{
    grid-column-start: 6;
  }

  .xs\:col-start-7{
    grid-column-start: 7;
  }

  .xs\:col-start-8{
    grid-column-start: 8;
  }

  .xs\:col-start-9{
    grid-column-start: 9;
  }

  .xs\:col-start-10{
    grid-column-start: 10;
  }

  .xs\:col-start-11{
    grid-column-start: 11;
  }

  .xs\:col-start-12{
    grid-column-start: 12;
  }

  .xs\:col-start-13{
    grid-column-start: 13;
  }

  .xs\:col-start-auto{
    grid-column-start: auto;
  }

  .xs\:col-end-1{
    grid-column-end: 1;
  }

  .xs\:col-end-2{
    grid-column-end: 2;
  }

  .xs\:col-end-3{
    grid-column-end: 3;
  }

  .xs\:col-end-4{
    grid-column-end: 4;
  }

  .xs\:col-end-5{
    grid-column-end: 5;
  }

  .xs\:col-end-6{
    grid-column-end: 6;
  }

  .xs\:col-end-7{
    grid-column-end: 7;
  }

  .xs\:col-end-8{
    grid-column-end: 8;
  }

  .xs\:col-end-9{
    grid-column-end: 9;
  }

  .xs\:col-end-10{
    grid-column-end: 10;
  }

  .xs\:col-end-11{
    grid-column-end: 11;
  }

  .xs\:col-end-12{
    grid-column-end: 12;
  }

  .xs\:col-end-13{
    grid-column-end: 13;
  }

  .xs\:col-end-auto{
    grid-column-end: auto;
  }

  .xs\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .xs\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .xs\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .xs\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .xs\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .xs\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .xs\:grid-rows-none{
    grid-template-rows: none;
  }

  .xs\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .xs\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .xs\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .xs\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .xs\:row-auto{
    grid-row: auto;
  }

  .xs\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .xs\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .xs\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .xs\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .xs\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .xs\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .xs\:row-span-full{
    grid-row: 1 / -1;
  }

  .xs\:row-start-1{
    grid-row-start: 1;
  }

  .xs\:row-start-2{
    grid-row-start: 2;
  }

  .xs\:row-start-3{
    grid-row-start: 3;
  }

  .xs\:row-start-4{
    grid-row-start: 4;
  }

  .xs\:row-start-5{
    grid-row-start: 5;
  }

  .xs\:row-start-6{
    grid-row-start: 6;
  }

  .xs\:row-start-7{
    grid-row-start: 7;
  }

  .xs\:row-start-auto{
    grid-row-start: auto;
  }

  .xs\:row-end-1{
    grid-row-end: 1;
  }

  .xs\:row-end-2{
    grid-row-end: 2;
  }

  .xs\:row-end-3{
    grid-row-end: 3;
  }

  .xs\:row-end-4{
    grid-row-end: 4;
  }

  .xs\:row-end-5{
    grid-row-end: 5;
  }

  .xs\:row-end-6{
    grid-row-end: 6;
  }

  .xs\:row-end-7{
    grid-row-end: 7;
  }

  .xs\:row-end-auto{
    grid-row-end: auto;
  }

  .xs\: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;
    -webkit-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: 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));
  }

  .xs\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .xs\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .xs\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .xs\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .xs\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .xs\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .xs\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .xs\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .xs\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .xs\:origin-top-left{
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }

  .xs\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xs\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xs\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xs\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xs\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xs\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xs\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xs\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xs\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xs\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xs\:scale-x-0{
    --transform-scale-x: 0;
  }

  .xs\:scale-x-50{
    --transform-scale-x: .5;
  }

  .xs\:scale-x-75{
    --transform-scale-x: .75;
  }

  .xs\:scale-x-90{
    --transform-scale-x: .9;
  }

  .xs\:scale-x-95{
    --transform-scale-x: .95;
  }

  .xs\:scale-x-100{
    --transform-scale-x: 1;
  }

  .xs\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .xs\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .xs\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .xs\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .xs\:scale-y-0{
    --transform-scale-y: 0;
  }

  .xs\:scale-y-50{
    --transform-scale-y: .5;
  }

  .xs\:scale-y-75{
    --transform-scale-y: .75;
  }

  .xs\:scale-y-90{
    --transform-scale-y: .9;
  }

  .xs\:scale-y-95{
    --transform-scale-y: .95;
  }

  .xs\:scale-y-100{
    --transform-scale-y: 1;
  }

  .xs\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .xs\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .xs\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .xs\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .xs\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xs\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xs\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xs\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xs\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xs\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xs\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xs\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xs\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xs\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xs\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .xs\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .xs\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .xs\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .xs\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .xs\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .xs\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .xs\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .xs\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .xs\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .xs\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .xs\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .xs\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .xs\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .xs\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .xs\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .xs\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .xs\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .xs\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .xs\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .xs\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xs\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xs\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xs\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xs\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xs\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xs\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xs\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xs\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xs\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xs\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .xs\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .xs\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .xs\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .xs\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .xs\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .xs\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .xs\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .xs\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .xs\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .xs\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .xs\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .xs\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .xs\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .xs\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .xs\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .xs\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .xs\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .xs\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .xs\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .xs\:rotate-0{
    --transform-rotate: 0;
  }

  .xs\:rotate-1{
    --transform-rotate: 1deg;
  }

  .xs\:rotate-2{
    --transform-rotate: 2deg;
  }

  .xs\:rotate-3{
    --transform-rotate: 3deg;
  }

  .xs\:rotate-6{
    --transform-rotate: 6deg;
  }

  .xs\:rotate-12{
    --transform-rotate: 12deg;
  }

  .xs\:rotate-45{
    --transform-rotate: 45deg;
  }

  .xs\:rotate-90{
    --transform-rotate: 90deg;
  }

  .xs\:rotate-180{
    --transform-rotate: 180deg;
  }

  .xs\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .xs\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .xs\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .xs\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .xs\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .xs\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .xs\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .xs\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .xs\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .xs\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .xs\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .xs\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .xs\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .xs\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .xs\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .xs\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .xs\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .xs\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .xs\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .xs\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .xs\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .xs\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .xs\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .xs\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .xs\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .xs\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .xs\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .xs\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .xs\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .xs\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .xs\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .xs\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .xs\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .xs\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .xs\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .xs\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .xs\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .xs\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .xs\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .xs\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .xs\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .xs\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .xs\:translate-x-0{
    --transform-translate-x: 0;
  }

  .xs\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .xs\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .xs\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .xs\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .xs\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .xs\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .xs\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .xs\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .xs\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .xs\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .xs\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .xs\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .xs\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .xs\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .xs\:translate-x-36{
    --transform-translate-x: 9rem;
  }

  .xs\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .xs\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .xs\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .xs\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .xs\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .xs\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .xs\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .xs\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .xs\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .xs\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .xs\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .xs\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .xs\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .xs\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .xs\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .xs\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .xs\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .xs\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .xs\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .xs\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .xs\:-translate-x-36{
    --transform-translate-x: -9rem;
  }

  .xs\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .xs\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .xs\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .xs\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .xs\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .xs\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .xs\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .xs\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .xs\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .xs\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .xs\:translate-y-0{
    --transform-translate-y: 0;
  }

  .xs\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .xs\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .xs\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .xs\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .xs\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .xs\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .xs\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .xs\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .xs\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .xs\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .xs\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .xs\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .xs\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .xs\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .xs\:translate-y-36{
    --transform-translate-y: 9rem;
  }

  .xs\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .xs\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .xs\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .xs\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .xs\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .xs\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .xs\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .xs\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .xs\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .xs\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .xs\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .xs\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .xs\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .xs\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .xs\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .xs\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .xs\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .xs\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .xs\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .xs\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .xs\:-translate-y-36{
    --transform-translate-y: -9rem;
  }

  .xs\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .xs\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .xs\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .xs\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .xs\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .xs\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .xs\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .xs\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .xs\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .xs\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .xs\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .xs\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .xs\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .xs\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .xs\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .xs\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .xs\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .xs\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .xs\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .xs\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .xs\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .xs\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .xs\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .xs\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .xs\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .xs\:hover\:translate-x-36:hover{
    --transform-translate-x: 9rem;
  }

  .xs\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .xs\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .xs\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .xs\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .xs\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .xs\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .xs\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .xs\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .xs\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .xs\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .xs\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .xs\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .xs\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .xs\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .xs\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .xs\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .xs\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .xs\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .xs\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .xs\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .xs\:hover\:-translate-x-36:hover{
    --transform-translate-x: -9rem;
  }

  .xs\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .xs\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .xs\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .xs\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .xs\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .xs\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .xs\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .xs\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .xs\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .xs\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .xs\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .xs\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .xs\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .xs\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .xs\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .xs\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .xs\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .xs\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .xs\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .xs\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .xs\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .xs\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .xs\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .xs\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .xs\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .xs\:hover\:translate-y-36:hover{
    --transform-translate-y: 9rem;
  }

  .xs\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .xs\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .xs\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .xs\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .xs\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .xs\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .xs\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .xs\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .xs\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .xs\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .xs\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .xs\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .xs\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .xs\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .xs\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .xs\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .xs\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .xs\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .xs\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .xs\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .xs\:hover\:-translate-y-36:hover{
    --transform-translate-y: -9rem;
  }

  .xs\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .xs\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .xs\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .xs\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .xs\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .xs\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .xs\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .xs\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .xs\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .xs\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .xs\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .xs\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .xs\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .xs\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .xs\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .xs\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .xs\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .xs\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .xs\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .xs\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .xs\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .xs\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .xs\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .xs\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .xs\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .xs\:focus\:translate-x-36:focus{
    --transform-translate-x: 9rem;
  }

  .xs\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .xs\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .xs\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .xs\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .xs\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .xs\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .xs\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .xs\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .xs\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .xs\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .xs\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .xs\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .xs\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .xs\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .xs\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .xs\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .xs\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .xs\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .xs\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .xs\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .xs\:focus\:-translate-x-36:focus{
    --transform-translate-x: -9rem;
  }

  .xs\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .xs\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .xs\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .xs\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .xs\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .xs\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .xs\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .xs\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .xs\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .xs\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .xs\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .xs\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .xs\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .xs\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .xs\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .xs\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .xs\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .xs\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .xs\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .xs\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .xs\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .xs\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .xs\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .xs\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .xs\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .xs\:focus\:translate-y-36:focus{
    --transform-translate-y: 9rem;
  }

  .xs\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .xs\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .xs\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .xs\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .xs\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .xs\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .xs\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .xs\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .xs\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .xs\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .xs\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .xs\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .xs\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .xs\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .xs\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .xs\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .xs\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .xs\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .xs\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .xs\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .xs\:focus\:-translate-y-36:focus{
    --transform-translate-y: -9rem;
  }

  .xs\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .xs\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .xs\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .xs\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .xs\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .xs\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .xs\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .xs\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .xs\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .xs\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .xs\:skew-x-0{
    --transform-skew-x: 0;
  }

  .xs\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .xs\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .xs\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .xs\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .xs\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .xs\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .xs\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .xs\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .xs\:-skew-x-2{
    --transform-skew-x: -2deg;
  }

  .xs\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .xs\:skew-y-0{
    --transform-skew-y: 0;
  }

  .xs\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .xs\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .xs\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .xs\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .xs\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .xs\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .xs\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .xs\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .xs\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .xs\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .xs\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .xs\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .xs\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .xs\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .xs\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .xs\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .xs\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .xs\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .xs\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .xs\:hover\:-skew-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .xs\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .xs\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .xs\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .xs\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .xs\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .xs\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .xs\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .xs\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .xs\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .xs\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .xs\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .xs\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .xs\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .xs\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .xs\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .xs\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .xs\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .xs\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .xs\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .xs\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .xs\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .xs\:focus\:-skew-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .xs\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .xs\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .xs\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .xs\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .xs\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .xs\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .xs\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .xs\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .xs\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .xs\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .xs\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .xs\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .xs\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .xs\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .xs\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .xs\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .xs\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .xs\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .xs\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .xs\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .xs\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .xs\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .xs\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .xs\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .xs\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .xs\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .xs\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .xs\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .xs\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .xs\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .xs\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .xs\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .xs\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .xs\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .xs\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .xs\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .xs\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .xs\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .xs\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .xs\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .xs\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .xs\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .xs\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .xs\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .xs\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xs\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .xs\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .xs\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .xs\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .xs\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .xs\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .xs\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .xs\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .xs\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .xs\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .xs\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .xs\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .xs\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .xs\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .xs\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .xs\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .xs\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .xs\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .xs\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .xs\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .xs\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .xs\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .xs\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .xs\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .xs\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .xs\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .xs\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .xs\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .xs\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .xs\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .xs\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .xs\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .xs\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .xs\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .xs\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .xs\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .xs\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .xs\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .xs\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .xs\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .xs\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .xs\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .xs\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .xs\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .xs\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .xs\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .xs\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .xs\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .xs\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .xs\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .xs\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .xs\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .xs\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .xs\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .xs\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .xs\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .xs\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .xs\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .xs\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .xs\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .xs\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .xs\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .xs\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .xs\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .xs\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xs\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xs\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xs\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .xs\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .xs\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .xs\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .xs\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .xs\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .xs\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .xs\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .xs\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .xs\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .xs\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .xs\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .xs\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .xs\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .xs\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .xs\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .xs\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .xs\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .xs\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .xs\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .xs\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .xs\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .xs\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .xs\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .xs\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .xs\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .xs\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .xs\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .xs\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xs\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xs\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xs\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xs\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xs\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xs\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .xs\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xs\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .xs\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .xs\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .xs\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .xs\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .xs\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .xs\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .xs\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .xs\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .xs\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .xs\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .xs\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .xs\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .xs\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .xs\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .xs\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .xs\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .xs\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .xs\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .xs\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .xs\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .xs\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .xs\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .xs\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .xs\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .xs\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .xs\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .xs\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .xs\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .xs\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .xs\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .xs\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .xs\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .xs\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .xs\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .xs\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .xs\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .xs\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .xs\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .xs\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .xs\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .xs\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .xs\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .xs\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .xs\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .xs\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .xs\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .xs\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .xs\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .xs\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .xs\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .xs\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .xs\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .xs\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .xs\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .xs\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .xs\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .xs\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .xs\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .xs\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .xs\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .xs\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .xs\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .xs\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .xs\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xs\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xs\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xs\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .xs\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .xs\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .xs\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .xs\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .xs\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .xs\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .xs\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .xs\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .xs\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .xs\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .xs\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .xs\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .xs\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .xs\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .xs\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .xs\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .xs\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .xs\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .xs\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .xs\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .xs\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .xs\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .xs\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .xs\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .xs\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .xs\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .xs\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .xs\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xs\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xs\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xs\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xs\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xs\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xs\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .xs\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xs\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .xs\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .xs\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .xs\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .xs\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .xs\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .xs\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .xs\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .xs\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .xs\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .xs\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .xs\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .xs\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .xs\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .xs\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .xs\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .xs\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .xs\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .xs\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .xs\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .xs\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .xs\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .xs\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .xs\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .xs\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .xs\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .xs\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .xs\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .xs\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .xs\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .xs\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .xs\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .xs\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .xs\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .xs\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .xs\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .xs\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .xs\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .xs\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .xs\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .xs\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .xs\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .xs\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .xs\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .xs\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .xs\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .xs\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .xs\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .xs\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .xs\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .xs\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .xs\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .xs\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .xs\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .xs\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .xs\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .xs\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .xs\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .xs\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .xs\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .xs\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .xs\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .xs\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .xs\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .xs\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xs\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xs\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xs\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .xs\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .xs\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .xs\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .xs\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .xs\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .xs\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .xs\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .xs\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .xs\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .xs\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .xs\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .xs\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .xs\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .xs\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .xs\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .xs\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .xs\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .xs\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .xs\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .xs\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .xs\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .xs\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .xs\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .xs\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .xs\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .xs\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .xs\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .xs\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xs\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xs\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xs\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xs\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xs\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xs\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .xs\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xs\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .xs\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .xs\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .xs\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .xs\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .xs\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .xs\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .xs\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .xs\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .xs\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .xs\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .xs\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .xs\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .xs\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .xs\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .xs\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .xs\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .xs\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .xs\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .xs\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .xs\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .xs\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .xs\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .xs\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .xs\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .xs\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .xs\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .xs\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .xs\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .xs\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .xs\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .xs\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .xs\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .xs\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .xs\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .xs\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .xs\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .xs\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .xs\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .xs\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .xs\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .xs\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .xs\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .xs\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .xs\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .xs\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .xs\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .xs\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .xs\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .xs\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .xs\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .xs\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .xs\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .xs\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .xs\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .xs\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .xs\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .xs\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .xs\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .xs\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .xs\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .xs\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .xs\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .xs\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .xs\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xs\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xs\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xs\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .xs\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .xs\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .xs\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .xs\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .xs\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .xs\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .xs\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .xs\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .xs\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .xs\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .xs\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .xs\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .xs\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .xs\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .xs\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .xs\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .xs\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .xs\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .xs\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .xs\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .xs\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .xs\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .xs\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .xs\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .xs\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .xs\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .xs\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .xs\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xs\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xs\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xs\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xs\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xs\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xs\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .xs\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xs\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .xs\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .xs\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .xs\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .xs\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .xs\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .xs\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .xs\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .xs\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .xs\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .xs\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .xs\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .xs\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .xs\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .xs\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .xs\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .xs\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .xs\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .xs\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .xs\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .xs\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .xs\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .xs\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .xs\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .xs\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .xs\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .xs\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .xs\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .xs\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .xs\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .xs\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .xs\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .xs\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .xs\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .xs\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .xs\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .xs\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .xs\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .xs\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .xs\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .xs\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .xs\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .xs\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .xs\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .xs\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .xs\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .xs\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .xs\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .xs\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .xs\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .xs\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .xs\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .xs\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .xs\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .xs\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .xs\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .xs\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .xs\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .xs\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .xs\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .xs\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .xs\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .xs\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .xs\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .xs\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xs\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xs\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xs\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .xs\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .xs\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .xs\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .xs\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .xs\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .xs\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .xs\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .xs\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .xs\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .xs\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .xs\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .xs\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .xs\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .xs\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .xs\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .xs\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .xs\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .xs\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .xs\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .xs\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .xs\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .xs\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .xs\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .xs\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .xs\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .xs\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .xs\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .xs\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xs\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xs\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xs\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xs\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xs\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xs\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .xs\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xs\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .xs\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .xs\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .xs\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .xs\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .xs\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .xs\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .xs\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .xs\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .xs\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .xs\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .xs\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .xs\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .xs\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .xs\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .xs\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .xs\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .xs\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .xs\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .xs\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .xs\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .xs\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .xs\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .xs\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .xs\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .xs\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .xs\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .xs\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .xs\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .xs\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .xs\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .xs\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .xs\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .xs\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .xs\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .xs\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .xs\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .xs\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .xs\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .xs\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .xs\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .xs\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .xs\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .xs\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .xs\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .xs\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .xs\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .xs\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .xs\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .xs\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .xs\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .xs\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .xs\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .xs\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .xs\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .xs\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .xs\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .xs\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .xs\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .xs\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .xs\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .xs\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .xs\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .xs\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .xs\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xs\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xs\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xs\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .xs\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .xs\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .xs\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .xs\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .xs\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .xs\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .xs\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .xs\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .xs\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .xs\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .xs\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .xs\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .xs\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .xs\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .xs\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .xs\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .xs\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .xs\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .xs\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .xs\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .xs\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .xs\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .xs\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .xs\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .xs\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .xs\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .xs\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .xs\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xs\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xs\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xs\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xs\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xs\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xs\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .xs\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xs\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .xs\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .xs\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .xs\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .xs\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .xs\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .xs\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .xs\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .xs\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .xs\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .xs\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .xs\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .xs\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .xs\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .xs\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .xs\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .xs\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .xs\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .xs\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .xs\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .xs\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .xs\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .xs\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .xs\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .xs\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .xs\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .xs\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .xs\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .xs\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .xs\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .xs\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .xs\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .xs\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .xs\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .xs\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .xs\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .xs\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .xs\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .xs\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .xs\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .xs\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .xs\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .xs\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .xs\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .xs\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .xs\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .xs\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .xs\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .xs\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .xs\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .xs\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .xs\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .xs\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .xs\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .xs\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .xs\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .xs\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .xs\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .xs\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .xs\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .xs\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .xs\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .xs\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .xs\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .xs\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xs\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xs\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xs\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .xs\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .xs\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .xs\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .xs\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .xs\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .xs\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .xs\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .xs\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .xs\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .xs\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .xs\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .xs\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .xs\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .xs\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .xs\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .xs\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .xs\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .xs\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .xs\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .xs\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .xs\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .xs\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .xs\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .xs\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .xs\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .xs\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .xs\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .xs\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xs\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xs\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xs\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xs\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xs\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xs\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xs\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xs\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xs\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xs\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .xs\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .xs\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .xs\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .xs\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .xs\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .xs\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xs\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .xs\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .xs\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .xs\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .xs\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .xs\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .xs\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .xs\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .xs\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .xs\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .xs\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .xs\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .xs\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xs\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xs\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .xs\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xs\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xs\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .xs\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .xs\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .xs\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .xs\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .xs\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .xs\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .xs\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .xs\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .xs\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .xs\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .xs\:container{
      max-width: 576px;
    }
  }

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

  @media (min-width: 992px){
    .xs\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .xs\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .xs\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .xs\:container{
      max-width: 1920px;
    }
  }
}

@media (min-width: 576px){
  .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-36 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(9rem * var(--space-y-reverse));
  }

  .sm\:space-x-36 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(9rem * var(--space-x-reverse));
    margin-left: calc(9rem * 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-44 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(11rem * var(--space-y-reverse));
  }

  .sm\:space-x-44 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(11rem * var(--space-x-reverse));
    margin-left: calc(11rem * 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-36 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-9rem * var(--space-y-reverse));
  }

  .sm\:-space-x-36 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-9rem * var(--space-x-reverse));
    margin-left: calc(-9rem * 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-44 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-11rem * var(--space-y-reverse));
  }

  .sm\:-space-x-44 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-11rem * var(--space-x-reverse));
    margin-left: calc(-11rem * 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\: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\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .sm\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .sm\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

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

  .sm\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .sm\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .sm\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .sm\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .sm\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .sm\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .sm\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .sm\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, 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-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .sm\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .sm\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .sm\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .sm\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .sm\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .sm\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .sm\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .sm\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .sm\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .sm\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .sm\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .sm\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .sm\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .sm\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .sm\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .sm\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .sm\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .sm\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .sm\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .sm\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .sm\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .sm\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .sm\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .sm\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, 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\: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: 0.5;
  }

  .sm\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .sm\:divide-opacity-100 > :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\: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\:appearance-none{
    -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\: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{
    background-clip: text;
  }

  .sm\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .sm\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:bg-transparent{
    background-color: transparent;
  }

  .sm\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .sm\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .sm\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .sm\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .sm\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .sm\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .sm\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .sm\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .sm\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .sm\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .sm\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .sm\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .sm\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .sm\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .sm\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .sm\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .sm\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .sm\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .sm\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .sm\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .sm\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .sm\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .sm\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .sm\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .sm\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .sm\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .sm\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .sm\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .sm\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .sm\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .sm\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .sm\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .sm\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .sm\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, 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-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .sm\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .sm\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .sm\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .sm\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .sm\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .sm\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .sm\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .sm\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .sm\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, 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-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .sm\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .sm\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .sm\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .sm\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .sm\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .sm\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .sm\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, 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-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .sm\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .sm\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .sm\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .sm\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .sm\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .sm\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .sm\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .sm\:bg-none{
    background-image: none;
  }

  .sm\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .sm\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .sm\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .sm\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .sm\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .sm\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .sm\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .sm\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .sm\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .sm\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .sm\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .sm\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .sm\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .sm\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .sm\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .sm\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .sm\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .sm\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .sm\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .sm\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .sm\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .sm\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .sm\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .sm\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .sm\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .sm\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .sm\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .sm\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .sm\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .sm\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .sm\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .sm\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .sm\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .sm\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .sm\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .sm\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .sm\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .sm\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .sm\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .sm\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .sm\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .sm\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .sm\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .sm\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .sm\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .sm\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .sm\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .sm\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .sm\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .sm\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .sm\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .sm\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .sm\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .sm\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .sm\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .sm\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .sm\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .sm\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .sm\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .sm\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .sm\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .sm\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .sm\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .sm\:to-form{
    --gradient-to-color: #79828B;
  }

  .sm\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .sm\:to-transparent{
    --gradient-to-color: transparent;
  }

  .sm\:to-black{
    --gradient-to-color: #212529;
  }

  .sm\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .sm\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .sm\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .sm\:to-grey{
    --gradient-to-color: #79828B;
  }

  .sm\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .sm\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .sm\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .sm\:to-white{
    --gradient-to-color: #ffffff;
  }

  .sm\:to-red{
    --gradient-to-color: #D31A08;
  }

  .sm\:to-green{
    --gradient-to-color: #66BB08;
  }

  .sm\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .sm\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .sm\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .sm\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .sm\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .sm\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .sm\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .sm\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .sm\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .sm\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .sm\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .sm\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .sm\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .sm\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .sm\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .sm\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .sm\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .sm\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .sm\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .sm\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .sm\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .sm\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .sm\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .sm\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .sm\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .sm\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .sm\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .sm\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .sm\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .sm\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .sm\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .sm\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .sm\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .sm\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .sm\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .sm\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .sm\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .sm\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .sm\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .sm\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .sm\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .sm\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .sm\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .sm\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .sm\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .sm\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .sm\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .sm\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .sm\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .sm\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .sm\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .sm\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .sm\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .sm\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .sm\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .sm\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .sm\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .sm\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .sm\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .sm\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .sm\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .sm\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .sm\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .sm\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .sm\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .sm\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .sm\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .sm\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .sm\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .sm\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .sm\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .sm\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .sm\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .sm\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .sm\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .sm\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .sm\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .sm\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .sm\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .sm\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .sm\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .sm\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .sm\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .sm\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .sm\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .sm\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .sm\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .sm\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .sm\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .sm\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .sm\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .sm\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .sm\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .sm\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .sm\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .sm\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .sm\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .sm\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .sm\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .sm\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .sm\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .sm\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .sm\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .sm\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .sm\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .sm\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .sm\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .sm\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .sm\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .sm\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .sm\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .sm\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .sm\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .sm\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .sm\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .sm\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .sm\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .sm\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .sm\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .sm\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .sm\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .sm\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .sm\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .sm\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .sm\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .sm\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .sm\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .sm\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .sm\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .sm\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .sm\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .sm\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .sm\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .sm\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .sm\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .sm\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .sm\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .sm\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .sm\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .sm\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .sm\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .sm\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .sm\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .sm\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .sm\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .sm\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .sm\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .sm\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .sm\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .sm\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .sm\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .sm\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .sm\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 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-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .sm\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .sm\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .sm\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .sm\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .sm\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .sm\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 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-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .sm\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .sm\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .sm\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .sm\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .sm\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .sm\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .sm\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .sm\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .sm\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .sm\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .sm\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .sm\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .sm\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .sm\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .sm\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .sm\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .sm\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .sm\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .sm\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .sm\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .sm\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .sm\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .sm\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .sm\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .sm\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .sm\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .sm\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .sm\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .sm\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .sm\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .sm\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .sm\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .sm\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .sm\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .sm\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .sm\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .sm\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .sm\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .sm\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .sm\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .sm\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .sm\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .sm\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .sm\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .sm\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .sm\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .sm\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .sm\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .sm\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .sm\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .sm\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .sm\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .sm\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .sm\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .sm\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .sm\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .sm\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .sm\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .sm\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .sm\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .sm\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .sm\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .sm\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .sm\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .sm\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .sm\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .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: 0.5;
  }

  .sm\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .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: 0.5;
  }

  .sm\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .sm\:focus\:bg-opacity-100:focus{
    --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\: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\:bg-auto{
    background-size: auto;
  }

  .sm\:bg-cover{
    background-size: cover;
  }

  .sm\:bg-contain{
    background-size: contain;
  }

  .sm\:border-collapse{
    border-collapse: collapse;
  }

  .sm\:border-separate{
    border-collapse: separate;
  }

  .sm\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .sm\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:border-transparent{
    border-color: transparent;
  }

  .sm\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .sm\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .sm\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .sm\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .sm\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .sm\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .sm\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .sm\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .sm\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .sm\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .sm\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .sm\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .sm\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .sm\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .sm\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .sm\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .sm\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .sm\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .sm\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .sm\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .sm\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .sm\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .sm\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .sm\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .sm\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .sm\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .sm\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .sm\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .sm\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .sm\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .sm\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .sm\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .sm\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .sm\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .sm\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .sm\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, 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-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .sm\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .sm\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .sm\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .sm\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .sm\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .sm\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .sm\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .sm\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .sm\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .sm\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .sm\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .sm\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .sm\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .sm\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .sm\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .sm\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .sm\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .sm\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .sm\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .sm\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .sm\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .sm\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .sm\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .sm\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, 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-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .sm\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .sm\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .sm\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .sm\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .sm\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .sm\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .sm\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .sm\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .sm\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .sm\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .sm\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .sm\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .sm\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .sm\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .sm\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .sm\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .sm\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .sm\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .sm\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .sm\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, 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-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .sm\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .sm\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .sm\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .sm\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .sm\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .sm\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .sm\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .sm\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .sm\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .sm\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .sm\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .sm\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .sm\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .sm\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .sm\:border-opacity-0{
    --border-opacity: 0;
  }

  .sm\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .sm\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .sm\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .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: 0.5;
  }

  .sm\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .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: 0.5;
  }

  .sm\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .sm\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .sm\:rounded-none{
    border-radius: 0;
  }

  .sm\:rounded-xs{
    border-radius: 0.061rem;
  }

  .sm\:rounded-sm{
    border-radius: 0.125rem;
  }

  .sm\:rounded{
    border-radius: 0.25rem;
  }

  .sm\:rounded-lg{
    border-radius: 0.5rem;
  }

  .sm\:rounded-full{
    border-radius: 9999px;
  }

  .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-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .sm\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .sm\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .sm\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .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-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-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-xs{
    border-top-left-radius: 0.061rem;
  }

  .sm\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .sm\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .sm\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .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-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\: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\: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\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .sm\:box-content{
    -webkit-box-sizing: content-box;
            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\:block{
    display: block;
  }

  .sm\:inline-block{
    display: inline-block;
  }

  .sm\:inline{
    display: inline;
  }

  .sm\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .sm\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    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\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .sm\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .sm\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sm\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .sm\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .sm\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .sm\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        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\: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\: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\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .sm\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .sm\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sm\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .sm\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .sm\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .sm\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .sm\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .sm\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .sm\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .sm\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .sm\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .sm\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .sm\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .sm\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .sm\:self-stretch{
    -ms-flex-item-align: stretch;
        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\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .sm\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .sm\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .sm\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .sm\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .sm\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            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\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .sm\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .sm\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .sm\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .sm\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .sm\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .sm\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .sm\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .sm\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .sm\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .sm\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .sm\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .sm\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .sm\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .sm\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .sm\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .sm\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .sm\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .sm\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .sm\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .sm\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .sm\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .sm\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            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\:clear-left{
    clear: left;
  }

  .sm\:clear-right{
    clear: right;
  }

  .sm\:clear-both{
    clear: both;
  }

  .sm\:clear-none{
    clear: none;
  }

  .sm\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .sm\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .sm\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .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\: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-21{
    height: 5.25rem;
  }

  .sm\:h-24{
    height: 6rem;
  }

  .sm\:h-32{
    height: 8rem;
  }

  .sm\:h-36{
    height: 9rem;
  }

  .sm\:h-40{
    height: 10rem;
  }

  .sm\:h-44{
    height: 11rem;
  }

  .sm\:h-48{
    height: 12rem;
  }

  .sm\:h-56{
    height: 14rem;
  }

  .sm\:h-64{
    height: 16rem;
  }

  .sm\:h-544{
    height: 34rem;
  }

  .sm\:h-auto{
    height: auto;
  }

  .sm\:h-px{
    height: 1px;
  }

  .sm\:h-full{
    height: 100%;
  }

  .sm\:h-screen{
    height: 100vh;
  }

  .sm\:text-0{
    font-size: 0;
  }

  .sm\:text-xxs{
    font-size: .75rem;
  }

  .sm\:text-xs{
    font-size: .8125rem;
  }

  .sm\:text-sm{
    font-size: .875rem;
  }

  .sm\:text-base{
    font-size: .9375rem;
  }

  .sm\:text-lg{
    font-size: 1rem;
  }

  .sm\:text-2lg{
    font-size: 1.125rem;
  }

  .sm\:text-xl{
    font-size: 1.25rem;
  }

  .sm\:text-2xl{
    font-size: 1.5rem;
  }

  .sm\:text-3xl{
    font-size: 2rem;
  }

  .sm\:text-4xl{
    font-size: 2.25rem;
  }

  .sm\:text-5xl{
    font-size: 3rem;
  }

  .sm\:leading-none{
    line-height: 1;
  }

  .sm\:leading-tight{
    line-height: 1.25;
  }

  .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\:list-inside{
    list-style-position: inside;
  }

  .sm\:list-outside{
    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\: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-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-36{
    margin: 9rem;
  }

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

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

  .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-36{
    margin: -9rem;
  }

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

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

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

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

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

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

  .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-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-36{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

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

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

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

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

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

  .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-36{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

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

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

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

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

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

  .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\: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-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-36{
    margin-top: 9rem;
  }

  .sm\:mr-36{
    margin-right: 9rem;
  }

  .sm\:mb-36{
    margin-bottom: 9rem;
  }

  .sm\:ml-36{
    margin-left: 9rem;
  }

  .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-44{
    margin-top: 11rem;
  }

  .sm\:mr-44{
    margin-right: 11rem;
  }

  .sm\:mb-44{
    margin-bottom: 11rem;
  }

  .sm\:ml-44{
    margin-left: 11rem;
  }

  .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-36{
    margin-top: -9rem;
  }

  .sm\:-mr-36{
    margin-right: -9rem;
  }

  .sm\:-mb-36{
    margin-bottom: -9rem;
  }

  .sm\:-ml-36{
    margin-left: -9rem;
  }

  .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-44{
    margin-top: -11rem;
  }

  .sm\:-mr-44{
    margin-right: -11rem;
  }

  .sm\:-mb-44{
    margin-bottom: -11rem;
  }

  .sm\:-ml-44{
    margin-left: -11rem;
  }

  .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\:max-h-full{
    max-height: 100%;
  }

  .sm\:max-h-screen{
    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-xs{
    max-width: 420px;
  }

  .sm\:max-w-screen-sm{
    max-width: 576px;
  }

  .sm\:max-w-screen-md{
    max-width: 768px;
  }

  .sm\:max-w-screen-lg{
    max-width: 992px;
  }

  .sm\:max-w-screen-xl{
    max-width: 1200px;
  }

  .sm\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .sm\:max-w-screen-hd{
    max-width: 1920px;
  }

  .sm\:min-h-0{
    min-height: 0;
  }

  .sm\:min-h-full{
    min-height: 100%;
  }

  .sm\:min-h-screen{
    min-height: 100vh;
  }

  .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-44{
    min-width: 11rem;
  }

  .sm\:min-w-48{
    min-width: 12rem;
  }

  .sm\:min-w-56{
    min-width: 14rem;
  }

  .sm\:min-w-64{
    min-width: 16rem;
  }

  .sm\:min-w-px{
    min-width: 1px;
  }

  .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\: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\:opacity-0{
    opacity: 0;
  }

  .sm\:opacity-25{
    opacity: 0.25;
  }

  .sm\:opacity-50{
    opacity: 0.5;
  }

  .sm\:opacity-75{
    opacity: 0.75;
  }

  .sm\:opacity-100{
    opacity: 1;
  }

  .sm\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .sm\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .sm\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .sm\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .sm\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .sm\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .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\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .sm\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .sm\:overscroll-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\: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-10{
    padding: 2.5rem;
  }

  .sm\:p-12{
    padding: 3rem;
  }

  .sm\:p-14{
    padding: 3.5rem;
  }

  .sm\:p-16{
    padding: 4rem;
  }

  .sm\:p-20{
    padding: 5rem;
  }

  .sm\:p-21{
    padding: 5.25rem;
  }

  .sm\:p-24{
    padding: 6rem;
  }

  .sm\:p-32{
    padding: 8rem;
  }

  .sm\:p-36{
    padding: 9rem;
  }

  .sm\:p-40{
    padding: 10rem;
  }

  .sm\:p-44{
    padding: 11rem;
  }

  .sm\:p-48{
    padding: 12rem;
  }

  .sm\:p-56{
    padding: 14rem;
  }

  .sm\:p-64{
    padding: 16rem;
  }

  .sm\:p-px{
    padding: 1px;
  }

  .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-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .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-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .sm\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .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-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .sm\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .sm\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .sm\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .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\: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-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-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-21{
    padding-top: 5.25rem;
  }

  .sm\:pr-21{
    padding-right: 5.25rem;
  }

  .sm\:pb-21{
    padding-bottom: 5.25rem;
  }

  .sm\:pl-21{
    padding-left: 5.25rem;
  }

  .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-36{
    padding-top: 9rem;
  }

  .sm\:pr-36{
    padding-right: 9rem;
  }

  .sm\:pb-36{
    padding-bottom: 9rem;
  }

  .sm\:pl-36{
    padding-left: 9rem;
  }

  .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-44{
    padding-top: 11rem;
  }

  .sm\:pr-44{
    padding-right: 11rem;
  }

  .sm\:pb-44{
    padding-bottom: 11rem;
  }

  .sm\:pl-44{
    padding-left: 11rem;
  }

  .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\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .sm\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .sm\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .sm\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .sm\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, 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-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .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-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, 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-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .sm\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .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::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .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::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .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-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .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\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .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::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .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::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .sm\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .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-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .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\:pointer-events-none{
    pointer-events: none;
  }

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

  .sm\:static{
    position: static;
  }

  .sm\:fixed{
    position: fixed;
  }

  .sm\:absolute{
    position: absolute;
  }

  .sm\:relative{
    position: relative;
  }

  .sm\: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-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\: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\:resize-none{
    resize: none;
  }

  .sm\:resize-y{
    resize: vertical;
  }

  .sm\:resize-x{
    resize: horizontal;
  }

  .sm\:resize{
    resize: both;
  }

  .sm\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .sm\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .sm\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .sm\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .sm\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .sm\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .sm\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .sm\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .sm\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .sm\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .sm\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .sm\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .sm\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .sm\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .sm\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .sm\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .sm\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .sm\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .sm\:fill-current{
    fill: currentColor;
  }

  .sm\:stroke-current{
    stroke: currentColor;
  }

  .sm\:stroke-0{
    stroke-width: 0;
  }

  .sm\:stroke-1{
    stroke-width: 1;
  }

  .sm\:stroke-2{
    stroke-width: 2;
  }

  .sm\:table-auto{
    table-layout: auto;
  }

  .sm\:table-fixed{
    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\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .sm\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:text-transparent{
    color: transparent;
  }

  .sm\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .sm\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .sm\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .sm\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .sm\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .sm\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .sm\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .sm\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .sm\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .sm\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .sm\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .sm\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .sm\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .sm\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .sm\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .sm\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .sm\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .sm\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .sm\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .sm\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .sm\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .sm\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .sm\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .sm\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .sm\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .sm\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .sm\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .sm\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .sm\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .sm\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .sm\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:hover\:text-transparent:hover{
    color: transparent;
  }

  .sm\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .sm\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .sm\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .sm\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .sm\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .sm\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .sm\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .sm\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .sm\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .sm\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .sm\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .sm\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .sm\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .sm\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .sm\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .sm\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .sm\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .sm\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .sm\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .sm\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .sm\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .sm\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .sm\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .sm\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .sm\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:focus\:text-transparent:focus{
    color: transparent;
  }

  .sm\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .sm\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .sm\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .sm\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .sm\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .sm\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .sm\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .sm\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .sm\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .sm\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .sm\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .sm\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .sm\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .sm\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .sm\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .sm\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .sm\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .sm\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:focus\:text-transparent:focus{
    color: transparent;
  }

  .sm\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .sm\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .sm\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .sm\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .sm\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .sm\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .sm\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .sm\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .sm\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .sm\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .sm\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .sm\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .sm\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .sm\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .sm\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .sm\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .sm\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .sm\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .sm\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .sm\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .sm\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .sm\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .sm\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .sm\:text-opacity-0{
    --text-opacity: 0;
  }

  .sm\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .sm\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .sm\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .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: 0.5;
  }

  .sm\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .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: 0.5;
  }

  .sm\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .sm\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .sm\:italic{
    font-style: italic;
  }

  .sm\:not-italic{
    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\: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\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:subpixel-antialiased{
    -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\: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\: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\: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\:visible{
    visibility: visible;
  }

  .sm\:invisible{
    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\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .sm\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .sm\:break-all{
    word-break: break-all;
  }

  .sm\:truncate{
    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-44{
    width: 11rem;
  }

  .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\:z-0{
    z-index: 0;
  }

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

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

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

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

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

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

  .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-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .sm\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .sm\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .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;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .sm\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .sm\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .sm\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .sm\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .sm\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .sm\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .sm\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .sm\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .sm\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .sm\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .sm\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .sm\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .sm\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .sm\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .sm\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .sm\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .sm\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .sm\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .sm\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .sm\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .sm\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .sm\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .sm\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .sm\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .sm\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .sm\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .sm\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .sm\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .sm\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .sm\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .sm\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .sm\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .sm\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .sm\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .sm\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .sm\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .sm\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .sm\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .sm\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .sm\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .sm\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .sm\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .sm\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-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-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .sm\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .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-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .sm\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .sm\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .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\: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\: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\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .sm\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .sm\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .sm\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

  .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\:col-span-full{
    grid-column: 1 / -1;
  }

  .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\: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\: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\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .sm\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .sm\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .sm\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .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\:row-span-full{
    grid-row: 1 / -1;
  }

  .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\: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\: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;
    -webkit-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: 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{
    -webkit-transform: none;
            transform: none;
  }

  .sm\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .sm\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .sm\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .sm\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .sm\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .sm\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .sm\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .sm\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .sm\:origin-top-left{
    -webkit-transform-origin: top left;
            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\:rotate-0{
    --transform-rotate: 0;
  }

  .sm\:rotate-1{
    --transform-rotate: 1deg;
  }

  .sm\:rotate-2{
    --transform-rotate: 2deg;
  }

  .sm\:rotate-3{
    --transform-rotate: 3deg;
  }

  .sm\:rotate-6{
    --transform-rotate: 6deg;
  }

  .sm\:rotate-12{
    --transform-rotate: 12deg;
  }

  .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\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .sm\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .sm\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .sm\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .sm\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .sm\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .sm\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .sm\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .sm\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .sm\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .sm\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .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\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .sm\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .sm\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .sm\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .sm\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .sm\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .sm\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .sm\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .sm\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .sm\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .sm\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .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\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .sm\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .sm\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .sm\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .sm\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .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-36{
    --transform-translate-x: 9rem;
  }

  .sm\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .sm\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .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-36{
    --transform-translate-x: -9rem;
  }

  .sm\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .sm\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .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-36{
    --transform-translate-y: 9rem;
  }

  .sm\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .sm\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .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-36{
    --transform-translate-y: -9rem;
  }

  .sm\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .sm\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .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-36:hover{
    --transform-translate-x: 9rem;
  }

  .sm\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .sm\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .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-36:hover{
    --transform-translate-x: -9rem;
  }

  .sm\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .sm\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .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-36:hover{
    --transform-translate-y: 9rem;
  }

  .sm\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .sm\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .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-36:hover{
    --transform-translate-y: -9rem;
  }

  .sm\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .sm\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .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-36:focus{
    --transform-translate-x: 9rem;
  }

  .sm\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .sm\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .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-36:focus{
    --transform-translate-x: -9rem;
  }

  .sm\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .sm\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .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-36:focus{
    --transform-translate-y: 9rem;
  }

  .sm\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .sm\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .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-36:focus{
    --transform-translate-y: -9rem;
  }

  .sm\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .sm\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .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\:skew-x-0{
    --transform-skew-x: 0;
  }

  .sm\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .sm\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .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-x-2{
    --transform-skew-x: -2deg;
  }

  .sm\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .sm\:skew-y-0{
    --transform-skew-y: 0;
  }

  .sm\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .sm\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .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\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .sm\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .sm\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .sm\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .sm\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .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-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .sm\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .sm\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .sm\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .sm\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .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\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .sm\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .sm\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .sm\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .sm\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .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-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .sm\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .sm\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .sm\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .sm\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .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\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .sm\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .sm\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .sm\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .sm\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .sm\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .sm\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .sm\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .sm\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .sm\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .sm\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .sm\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .sm\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sm\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .sm\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .sm\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .sm\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .sm\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .sm\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .sm\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .sm\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .sm\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .sm\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .sm\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .sm\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .sm\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .sm\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .sm\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .sm\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .sm\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .sm\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .sm\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .sm\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .sm\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .sm\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .sm\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .sm\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .sm\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .sm\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .sm\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .sm\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .sm\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .sm\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .sm\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .sm\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .sm\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .sm\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .sm\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .sm\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .sm\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .sm\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .sm\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .sm\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .sm\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .sm\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .sm\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .sm\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .sm\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .sm\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .sm\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .sm\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .sm\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .sm\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .sm\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .sm\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .sm\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .sm\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .sm\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .sm\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .sm\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .sm\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .sm\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .sm\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .sm\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .sm\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .sm\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .sm\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .sm\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .sm\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .sm\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .sm\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .sm\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .sm\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .sm\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .sm\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .sm\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .sm\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .sm\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .sm\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .sm\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .sm\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .sm\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .sm\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .sm\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .sm\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .sm\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .sm\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .sm\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .sm\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .sm\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .sm\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .sm\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .sm\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .sm\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .sm\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .sm\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .sm\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .sm\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .sm\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .sm\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .sm\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .sm\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .sm\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .sm\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .sm\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .sm\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .sm\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .sm\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .sm\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .sm\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .sm\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .sm\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .sm\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .sm\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .sm\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .sm\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .sm\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .sm\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .sm\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .sm\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .sm\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .sm\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .sm\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .sm\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .sm\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .sm\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .sm\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .sm\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .sm\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .sm\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .sm\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .sm\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .sm\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .sm\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .sm\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .sm\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .sm\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .sm\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .sm\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .sm\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .sm\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .sm\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .sm\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .sm\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .sm\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .sm\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .sm\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .sm\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .sm\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .sm\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .sm\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .sm\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .sm\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .sm\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .sm\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .sm\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .sm\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .sm\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .sm\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .sm\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .sm\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .sm\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .sm\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .sm\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .sm\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .sm\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .sm\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .sm\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .sm\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .sm\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .sm\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .sm\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .sm\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .sm\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .sm\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .sm\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .sm\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .sm\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .sm\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .sm\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .sm\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .sm\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .sm\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .sm\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .sm\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .sm\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .sm\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .sm\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .sm\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .sm\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .sm\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .sm\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .sm\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .sm\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .sm\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .sm\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .sm\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .sm\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .sm\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .sm\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .sm\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .sm\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .sm\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .sm\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .sm\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .sm\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .sm\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .sm\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .sm\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .sm\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .sm\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .sm\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .sm\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .sm\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .sm\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .sm\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .sm\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .sm\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .sm\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .sm\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .sm\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .sm\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .sm\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .sm\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .sm\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .sm\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .sm\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .sm\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .sm\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .sm\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .sm\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .sm\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .sm\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .sm\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .sm\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .sm\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .sm\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .sm\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .sm\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .sm\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .sm\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .sm\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .sm\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .sm\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .sm\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .sm\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .sm\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .sm\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .sm\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .sm\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .sm\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .sm\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .sm\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .sm\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .sm\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .sm\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .sm\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .sm\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .sm\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .sm\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .sm\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .sm\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .sm\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .sm\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .sm\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .sm\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .sm\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .sm\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .sm\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .sm\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .sm\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .sm\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .sm\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .sm\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .sm\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .sm\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .sm\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .sm\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .sm\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .sm\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .sm\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .sm\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .sm\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .sm\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .sm\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .sm\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .sm\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .sm\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .sm\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .sm\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .sm\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .sm\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .sm\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .sm\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .sm\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .sm\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .sm\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .sm\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .sm\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .sm\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .sm\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .sm\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .sm\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .sm\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .sm\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .sm\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .sm\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .sm\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .sm\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .sm\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .sm\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .sm\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .sm\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .sm\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .sm\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .sm\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .sm\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .sm\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .sm\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .sm\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .sm\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .sm\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .sm\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .sm\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .sm\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .sm\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .sm\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .sm\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .sm\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .sm\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .sm\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .sm\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .sm\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .sm\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .sm\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .sm\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .sm\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .sm\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .sm\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .sm\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .sm\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .sm\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .sm\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .sm\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .sm\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .sm\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .sm\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .sm\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .sm\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .sm\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .sm\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .sm\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .sm\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .sm\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .sm\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .sm\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .sm\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .sm\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .sm\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .sm\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .sm\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .sm\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .sm\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .sm\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .sm\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .sm\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .sm\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .sm\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .sm\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .sm\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .sm\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .sm\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .sm\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .sm\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .sm\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .sm\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .sm\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .sm\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .sm\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .sm\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .sm\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .sm\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .sm\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .sm\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .sm\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .sm\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .sm\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .sm\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .sm\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .sm\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .sm\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .sm\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .sm\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .sm\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .sm\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .sm\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .sm\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .sm\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .sm\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .sm\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .sm\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .sm\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .sm\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .sm\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .sm\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .sm\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .sm\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .sm\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .sm\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .sm\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .sm\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .sm\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .sm\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .sm\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .sm\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .sm\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .sm\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .sm\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .sm\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .sm\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .sm\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .sm\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .sm\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .sm\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .sm\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .sm\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .sm\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .sm\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .sm\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .sm\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .sm\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .sm\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .sm\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .sm\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .sm\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .sm\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .sm\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .sm\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .sm\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .sm\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .sm\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .sm\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .sm\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .sm\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .sm\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .sm\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .sm\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .sm\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .sm\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .sm\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .sm\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .sm\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .sm\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .sm\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .sm\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .sm\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .sm\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .sm\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .sm\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .sm\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .sm\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .sm\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .sm\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .sm\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .sm\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .sm\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .sm\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .sm\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .sm\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .sm\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .sm\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .sm\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .sm\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .sm\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .sm\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .sm\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .sm\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .sm\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .sm\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .sm\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .sm\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .sm\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .sm\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .sm\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .sm\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .sm\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .sm\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .sm\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .sm\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .sm\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .sm\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .sm\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .sm\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .sm\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .sm\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .sm\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .sm\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .sm\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .sm\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .sm\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .sm\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .sm\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .sm\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .sm\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .sm\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .sm\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .sm\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .sm\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .sm\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .sm\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .sm\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .sm\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .sm\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .sm\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .sm\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .sm\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .sm\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .sm\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .sm\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .sm\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .sm\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .sm\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .sm\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .sm\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .sm\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .sm\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .sm\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .sm\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .sm\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .sm\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .sm\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .sm\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .sm\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .sm\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .sm\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .sm\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .sm\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .sm\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .sm\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .sm\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .sm\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .sm\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .sm\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .sm\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .sm\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .sm\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .sm\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .sm\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .sm\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .sm\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .sm\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .sm\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .sm\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .sm\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .sm\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .sm\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .sm\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .sm\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .sm\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .sm\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .sm\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .sm\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .sm\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .sm\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .sm\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .sm\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .sm\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .sm\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .sm\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .sm\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .sm\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .sm\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .sm\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .sm\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .sm\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .sm\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .sm\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .sm\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .sm\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .sm\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .sm\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .sm\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .sm\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .sm\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .sm\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .sm\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .sm\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .sm\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .sm\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .sm\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .sm\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .sm\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .sm\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .sm\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .sm\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .sm\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .sm\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .sm\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .sm\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .sm\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .sm\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .sm\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .sm\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .sm\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .sm\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .sm\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .sm\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .sm\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .sm\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .sm\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .sm\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .sm\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .sm\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .sm\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .sm\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .sm\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .sm\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .sm\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .sm\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .sm\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .sm\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .sm\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .sm\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .sm\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .sm\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .sm\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .sm\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .sm\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .sm\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .sm\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .sm\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .sm\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .sm\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .sm\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .sm\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .sm\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .sm\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .sm\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .sm\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .sm\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .sm\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .sm\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .sm\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .sm\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .sm\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .sm\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .sm\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .sm\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .sm\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .sm\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .sm\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .sm\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .sm\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .sm\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .sm\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .sm\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .sm\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .sm\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .sm\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .sm\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .sm\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .sm\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .sm\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .sm\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .sm\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .sm\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .sm\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .sm\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .sm\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .sm\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .sm\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .sm\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .sm\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .sm\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .sm\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .sm\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .sm\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .sm\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .sm\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .sm\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .sm\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .sm\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .sm\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .sm\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .sm\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .sm\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .sm\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .sm\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .sm\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .sm\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .sm\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .sm\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .sm\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .sm\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .sm\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .sm\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .sm\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .sm\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .sm\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .sm\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .sm\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .sm\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .sm\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .sm\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .sm\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .sm\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .sm\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .sm\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .sm\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .sm\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .sm\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .sm\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .sm\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .sm\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .sm\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .sm\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .sm\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .sm\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .sm\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .sm\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .sm\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .sm\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .sm\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .sm\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .sm\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .sm\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .sm\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .sm\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .sm\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .sm\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .sm\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .sm\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .sm\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .sm\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .sm\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .sm\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .sm\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .sm\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .sm\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .sm\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .sm\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .sm\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .sm\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .sm\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .sm\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .sm\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .sm\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .sm\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .sm\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .sm\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .sm\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .sm\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .sm\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .sm\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .sm\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .sm\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .sm\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .sm\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .sm\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .sm\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .sm\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .sm\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .sm\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .sm\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .sm\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .sm\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .sm\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .sm\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .sm\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .sm\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .sm\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .sm\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .sm\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .sm\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .sm\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .sm\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .sm\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .sm\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .sm\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .sm\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .sm\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .sm\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .sm\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .sm\:container{
      max-width: 576px;
    }
  }

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

  @media (min-width: 992px){
    .sm\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .sm\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .sm\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .sm\:container{
      max-width: 1920px;
    }
  }
}

@media (min-width: 768px){
  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

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

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

  .md\: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));
  }

  .md\: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)));
  }

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

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

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

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

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

  .md\:-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));
  }

  .md\:-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)));
  }

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

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

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

  .md\:-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));
  }

  .md\:-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)));
  }

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

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

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

  .md\: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));
  }

  .md\: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)));
  }

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

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

  .md\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .md\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .md\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

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

  .md\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .md\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .md\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .md\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .md\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .md\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .md\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .md\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--divide-opacity));
  }

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

  .md\:divide-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .md\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .md\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .md\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .md\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .md\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .md\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .md\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .md\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .md\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .md\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .md\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .md\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .md\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .md\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .md\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .md\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .md\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .md\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .md\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .md\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .md\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .md\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .md\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .md\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--divide-opacity));
  }

  .md\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .md\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .md\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .md\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .md\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .md\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .md\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .md\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: 0.5;
  }

  .md\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .md\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .md\: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;
  }

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

  .md\: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;
  }

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

  .md\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .md\:bg-fixed{
    background-attachment: fixed;
  }

  .md\:bg-local{
    background-attachment: local;
  }

  .md\:bg-scroll{
    background-attachment: scroll;
  }

  .md\:bg-clip-border{
    background-clip: border-box;
  }

  .md\:bg-clip-padding{
    background-clip: padding-box;
  }

  .md\:bg-clip-content{
    background-clip: content-box;
  }

  .md\:bg-clip-text{
    background-clip: text;
  }

  .md\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .md\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:bg-transparent{
    background-color: transparent;
  }

  .md\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .md\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .md\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .md\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .md\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .md\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .md\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .md\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .md\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .md\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .md\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .md\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .md\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .md\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .md\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .md\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .md\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .md\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .md\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .md\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .md\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .md\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .md\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .md\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .md\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .md\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .md\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .md\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .md\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .md\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .md\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .md\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .md\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .md\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .md\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .md\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .md\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .md\:hover\:bg-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .md\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .md\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .md\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .md\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .md\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .md\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .md\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .md\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .md\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .md\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .md\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .md\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .md\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .md\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .md\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .md\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .md\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .md\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .md\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .md\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .md\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .md\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .md\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .md\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .md\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .md\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .md\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .md\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .md\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .md\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .md\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .md\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .md\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .md\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .md\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .md\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .md\:bg-none{
    background-image: none;
  }

  .md\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .md\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .md\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .md\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .md\:from-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .md\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .md\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .md\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .md\:from-white{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .md\:from-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .md\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .md\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .md\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .md\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .md\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .md\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .md\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .md\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .md\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .md\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .md\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .md\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .md\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .md\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .md\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .md\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .md\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .md\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .md\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .md\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .md\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .md\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .md\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .md\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .md\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .md\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\: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));
  }

  .md\:via-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .md\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .md\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .md\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .md\: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));
  }

  .md\:via-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .md\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .md\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .md\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .md\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .md\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .md\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .md\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .md\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .md\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .md\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .md\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .md\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .md\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .md\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .md\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .md\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .md\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .md\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .md\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .md\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .md\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .md\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .md\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .md\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .md\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .md\:to-form{
    --gradient-to-color: #79828B;
  }

  .md\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .md\:to-transparent{
    --gradient-to-color: transparent;
  }

  .md\:to-black{
    --gradient-to-color: #212529;
  }

  .md\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .md\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .md\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .md\:to-grey{
    --gradient-to-color: #79828B;
  }

  .md\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .md\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .md\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .md\:to-white{
    --gradient-to-color: #ffffff;
  }

  .md\:to-red{
    --gradient-to-color: #D31A08;
  }

  .md\:to-green{
    --gradient-to-color: #66BB08;
  }

  .md\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .md\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .md\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .md\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .md\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .md\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .md\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .md\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .md\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .md\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .md\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .md\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .md\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .md\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .md\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .md\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .md\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .md\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .md\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .md\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .md\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .md\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .md\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .md\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .md\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .md\:hover\:from-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .md\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .md\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .md\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .md\:hover\:from-white:hover{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .md\:hover\:from-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .md\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .md\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .md\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .md\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .md\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .md\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .md\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .md\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .md\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .md\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .md\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .md\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .md\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .md\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .md\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .md\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .md\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .md\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .md\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .md\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .md\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .md\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .md\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .md\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .md\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .md\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\: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));
  }

  .md\:hover\:via-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .md\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .md\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .md\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .md\: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));
  }

  .md\:hover\:via-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .md\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .md\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .md\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .md\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .md\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .md\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .md\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .md\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .md\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .md\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .md\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .md\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .md\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .md\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .md\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .md\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .md\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .md\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .md\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .md\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .md\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .md\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .md\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .md\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .md\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .md\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .md\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .md\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .md\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .md\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .md\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .md\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .md\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .md\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .md\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .md\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .md\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .md\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .md\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .md\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .md\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .md\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .md\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .md\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .md\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .md\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .md\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .md\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .md\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .md\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .md\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .md\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .md\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .md\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .md\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .md\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .md\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .md\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .md\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .md\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .md\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .md\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .md\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .md\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .md\:focus\:from-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .md\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .md\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .md\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .md\:focus\:from-white:focus{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .md\:focus\:from-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .md\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .md\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .md\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .md\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .md\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .md\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .md\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .md\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .md\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .md\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .md\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .md\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .md\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .md\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .md\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .md\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .md\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .md\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .md\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .md\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .md\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .md\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .md\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .md\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .md\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .md\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\: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));
  }

  .md\:focus\:via-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .md\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .md\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .md\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .md\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .md\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .md\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .md\: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));
  }

  .md\:focus\:via-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .md\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .md\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .md\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .md\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .md\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .md\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .md\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .md\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .md\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .md\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .md\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .md\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .md\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .md\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .md\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .md\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .md\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .md\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .md\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .md\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .md\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .md\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .md\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .md\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .md\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .md\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .md\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .md\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .md\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .md\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .md\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .md\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .md\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .md\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .md\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .md\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .md\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .md\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .md\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .md\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .md\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .md\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .md\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .md\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .md\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .md\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .md\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .md\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .md\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .md\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .md\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .md\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .md\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .md\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .md\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .md\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .md\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .md\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .md\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .md\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .md\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .md\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .md\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .md\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .md\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .md\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .md\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .md\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .md\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .md\:hover\:bg-opacity-50:hover{
    --bg-opacity: 0.5;
  }

  .md\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .md\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .md\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .md\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .md\:focus\:bg-opacity-50:focus{
    --bg-opacity: 0.5;
  }

  .md\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .md\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .md\:bg-bottom{
    background-position: bottom;
  }

  .md\:bg-center{
    background-position: center;
  }

  .md\:bg-left{
    background-position: left;
  }

  .md\:bg-left-bottom{
    background-position: left bottom;
  }

  .md\:bg-left-top{
    background-position: left top;
  }

  .md\:bg-right{
    background-position: right;
  }

  .md\:bg-right-bottom{
    background-position: right bottom;
  }

  .md\:bg-right-top{
    background-position: right top;
  }

  .md\:bg-top{
    background-position: top;
  }

  .md\:bg-repeat{
    background-repeat: repeat;
  }

  .md\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .md\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .md\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .md\:bg-repeat-round{
    background-repeat: round;
  }

  .md\:bg-repeat-space{
    background-repeat: space;
  }

  .md\:bg-auto{
    background-size: auto;
  }

  .md\:bg-cover{
    background-size: cover;
  }

  .md\:bg-contain{
    background-size: contain;
  }

  .md\:border-collapse{
    border-collapse: collapse;
  }

  .md\:border-separate{
    border-collapse: separate;
  }

  .md\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .md\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:border-transparent{
    border-color: transparent;
  }

  .md\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .md\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .md\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .md\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .md\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .md\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .md\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .md\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .md\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .md\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .md\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .md\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .md\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .md\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .md\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .md\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .md\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .md\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .md\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .md\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .md\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .md\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .md\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .md\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .md\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .md\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .md\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .md\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .md\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .md\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .md\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .md\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .md\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .md\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .md\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .md\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .md\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .md\:hover\:border-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .md\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .md\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .md\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .md\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .md\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .md\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .md\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .md\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .md\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .md\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .md\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .md\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .md\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .md\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .md\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .md\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .md\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .md\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .md\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .md\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .md\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .md\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .md\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .md\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .md\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .md\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .md\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .md\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .md\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .md\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .md\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .md\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .md\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .md\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .md\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .md\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .md\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .md\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .md\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .md\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .md\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .md\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .md\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .md\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .md\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .md\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .md\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .md\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .md\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .md\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .md\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .md\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .md\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .md\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .md\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .md\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .md\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .md\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .md\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .md\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .md\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .md\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .md\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .md\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .md\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .md\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .md\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .md\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .md\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .md\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .md\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .md\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .md\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .md\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .md\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .md\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .md\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .md\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .md\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .md\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .md\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .md\:border-opacity-0{
    --border-opacity: 0;
  }

  .md\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .md\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .md\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .md\:border-opacity-100{
    --border-opacity: 1;
  }

  .md\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .md\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .md\:hover\:border-opacity-50:hover{
    --border-opacity: 0.5;
  }

  .md\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .md\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .md\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .md\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .md\:focus\:border-opacity-50:focus{
    --border-opacity: 0.5;
  }

  .md\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .md\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .md\:rounded-none{
    border-radius: 0;
  }

  .md\:rounded-xs{
    border-radius: 0.061rem;
  }

  .md\:rounded-sm{
    border-radius: 0.125rem;
  }

  .md\:rounded{
    border-radius: 0.25rem;
  }

  .md\:rounded-lg{
    border-radius: 0.5rem;
  }

  .md\:rounded-full{
    border-radius: 9999px;
  }

  .md\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .md\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .md\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-t-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .md\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .md\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .md\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .md\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .md\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .md\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .md\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .md\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .md\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .md\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .md\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .md\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .md\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .md\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .md\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .md\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .md\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .md\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .md\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .md\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .md\:rounded-tl-xs{
    border-top-left-radius: 0.061rem;
  }

  .md\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .md\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .md\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .md\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .md\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .md\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .md\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .md\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .md\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .md\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .md\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .md\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .md\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .md\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .md\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .md\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .md\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .md\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .md\:border-solid{
    border-style: solid;
  }

  .md\:border-dashed{
    border-style: dashed;
  }

  .md\:border-dotted{
    border-style: dotted;
  }

  .md\:border-double{
    border-style: double;
  }

  .md\:border-none{
    border-style: none;
  }

  .md\:border-0{
    border-width: 0;
  }

  .md\:border-2{
    border-width: 2px;
  }

  .md\:border-4{
    border-width: 4px;
  }

  .md\:border-8{
    border-width: 8px;
  }

  .md\:border{
    border-width: 1px;
  }

  .md\:border-t-0{
    border-top-width: 0;
  }

  .md\:border-r-0{
    border-right-width: 0;
  }

  .md\:border-b-0{
    border-bottom-width: 0;
  }

  .md\:border-l-0{
    border-left-width: 0;
  }

  .md\:border-t-2{
    border-top-width: 2px;
  }

  .md\:border-r-2{
    border-right-width: 2px;
  }

  .md\:border-b-2{
    border-bottom-width: 2px;
  }

  .md\:border-l-2{
    border-left-width: 2px;
  }

  .md\:border-t-4{
    border-top-width: 4px;
  }

  .md\:border-r-4{
    border-right-width: 4px;
  }

  .md\:border-b-4{
    border-bottom-width: 4px;
  }

  .md\:border-l-4{
    border-left-width: 4px;
  }

  .md\:border-t-8{
    border-top-width: 8px;
  }

  .md\:border-r-8{
    border-right-width: 8px;
  }

  .md\:border-b-8{
    border-bottom-width: 8px;
  }

  .md\:border-l-8{
    border-left-width: 8px;
  }

  .md\:border-t{
    border-top-width: 1px;
  }

  .md\:border-r{
    border-right-width: 1px;
  }

  .md\:border-b{
    border-bottom-width: 1px;
  }

  .md\:border-l{
    border-left-width: 1px;
  }

  .md\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .md\:box-content{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .md\:cursor-auto{
    cursor: auto;
  }

  .md\:cursor-default{
    cursor: default;
  }

  .md\:cursor-pointer{
    cursor: pointer;
  }

  .md\:cursor-wait{
    cursor: wait;
  }

  .md\:cursor-text{
    cursor: text;
  }

  .md\:cursor-move{
    cursor: move;
  }

  .md\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .md\:block{
    display: block;
  }

  .md\:inline-block{
    display: inline-block;
  }

  .md\:inline{
    display: inline;
  }

  .md\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .md\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .md\:table{
    display: table;
  }

  .md\:table-caption{
    display: table-caption;
  }

  .md\:table-cell{
    display: table-cell;
  }

  .md\:table-column{
    display: table-column;
  }

  .md\:table-column-group{
    display: table-column-group;
  }

  .md\:table-footer-group{
    display: table-footer-group;
  }

  .md\:table-header-group{
    display: table-header-group;
  }

  .md\:table-row-group{
    display: table-row-group;
  }

  .md\:table-row{
    display: table-row;
  }

  .md\:flow-root{
    display: flow-root;
  }

  .md\:grid{
    display: grid;
  }

  .md\:inline-grid{
    display: inline-grid;
  }

  .md\:contents{
    display: contents;
  }

  .md\:hidden{
    display: none;
  }

  .md\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .md\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .md\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .md\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .md\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .md\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .md\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .md\:place-items-auto{
    place-items: auto;
  }

  .md\:place-items-start{
    place-items: start;
  }

  .md\:place-items-end{
    place-items: end;
  }

  .md\:place-items-center{
    place-items: center;
  }

  .md\:place-items-stretch{
    place-items: stretch;
  }

  .md\:place-content-center{
    place-content: center;
  }

  .md\:place-content-start{
    place-content: start;
  }

  .md\:place-content-end{
    place-content: end;
  }

  .md\:place-content-between{
    place-content: space-between;
  }

  .md\:place-content-around{
    place-content: space-around;
  }

  .md\:place-content-evenly{
    place-content: space-evenly;
  }

  .md\:place-content-stretch{
    place-content: stretch;
  }

  .md\:place-self-auto{
    place-self: auto;
  }

  .md\:place-self-start{
    place-self: start;
  }

  .md\:place-self-end{
    place-self: end;
  }

  .md\:place-self-center{
    place-self: center;
  }

  .md\:place-self-stretch{
    place-self: stretch;
  }

  .md\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .md\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .md\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .md\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .md\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .md\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .md\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .md\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .md\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .md\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .md\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .md\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .md\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .md\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .md\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .md\:self-stretch{
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .md\:justify-items-auto{
    justify-items: auto;
  }

  .md\:justify-items-start{
    justify-items: start;
  }

  .md\:justify-items-end{
    justify-items: end;
  }

  .md\:justify-items-center{
    justify-items: center;
  }

  .md\:justify-items-stretch{
    justify-items: stretch;
  }

  .md\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .md\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .md\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .md\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .md\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .md\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .md\:justify-self-auto{
    justify-self: auto;
  }

  .md\:justify-self-start{
    justify-self: start;
  }

  .md\:justify-self-end{
    justify-self: end;
  }

  .md\:justify-self-center{
    justify-self: center;
  }

  .md\:justify-self-stretch{
    justify-self: stretch;
  }

  .md\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .md\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .md\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .md\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .md\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .md\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .md\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .md\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .md\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .md\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .md\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .md\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .md\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .md\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .md\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .md\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .md\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .md\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .md\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .md\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .md\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .md\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .md\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .md\:float-right{
    float: right;
  }

  .md\:float-left{
    float: left;
  }

  .md\:float-none{
    float: none;
  }

  .md\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .md\:clear-left{
    clear: left;
  }

  .md\:clear-right{
    clear: right;
  }

  .md\:clear-both{
    clear: both;
  }

  .md\:clear-none{
    clear: none;
  }

  .md\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .md\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .md\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .md\:font-hairline{
    font-weight: 100;
  }

  .md\:font-thin{
    font-weight: 200;
  }

  .md\:font-light{
    font-weight: 300;
  }

  .md\:font-normal{
    font-weight: 400;
  }

  .md\:font-medium{
    font-weight: 500;
  }

  .md\:font-semibold{
    font-weight: 600;
  }

  .md\:font-bold{
    font-weight: 700;
  }

  .md\:font-extrabold{
    font-weight: 800;
  }

  .md\:font-black{
    font-weight: 900;
  }

  .md\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .md\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .md\:hover\:font-light:hover{
    font-weight: 300;
  }

  .md\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .md\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .md\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .md\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .md\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .md\:hover\:font-black:hover{
    font-weight: 900;
  }

  .md\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .md\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .md\:focus\:font-light:focus{
    font-weight: 300;
  }

  .md\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .md\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .md\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .md\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .md\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .md\:focus\:font-black:focus{
    font-weight: 900;
  }

  .md\:h-0{
    height: 0;
  }

  .md\:h-1{
    height: 0.25rem;
  }

  .md\:h-2{
    height: 0.5rem;
  }

  .md\:h-3{
    height: 0.75rem;
  }

  .md\:h-4{
    height: 1rem;
  }

  .md\:h-5{
    height: 1.25rem;
  }

  .md\:h-6{
    height: 1.5rem;
  }

  .md\:h-8{
    height: 2rem;
  }

  .md\:h-10{
    height: 2.5rem;
  }

  .md\:h-12{
    height: 3rem;
  }

  .md\:h-14{
    height: 3.5rem;
  }

  .md\:h-16{
    height: 4rem;
  }

  .md\:h-20{
    height: 5rem;
  }

  .md\:h-21{
    height: 5.25rem;
  }

  .md\:h-24{
    height: 6rem;
  }

  .md\:h-32{
    height: 8rem;
  }

  .md\:h-36{
    height: 9rem;
  }

  .md\:h-40{
    height: 10rem;
  }

  .md\:h-44{
    height: 11rem;
  }

  .md\:h-48{
    height: 12rem;
  }

  .md\:h-56{
    height: 14rem;
  }

  .md\:h-64{
    height: 16rem;
  }

  .md\:h-544{
    height: 34rem;
  }

  .md\:h-auto{
    height: auto;
  }

  .md\:h-px{
    height: 1px;
  }

  .md\:h-full{
    height: 100%;
  }

  .md\:h-screen{
    height: 100vh;
  }

  .md\:text-0{
    font-size: 0;
  }

  .md\:text-xxs{
    font-size: .75rem;
  }

  .md\:text-xs{
    font-size: .8125rem;
  }

  .md\:text-sm{
    font-size: .875rem;
  }

  .md\:text-base{
    font-size: .9375rem;
  }

  .md\:text-lg{
    font-size: 1rem;
  }

  .md\:text-2lg{
    font-size: 1.125rem;
  }

  .md\:text-xl{
    font-size: 1.25rem;
  }

  .md\:text-2xl{
    font-size: 1.5rem;
  }

  .md\:text-3xl{
    font-size: 2rem;
  }

  .md\:text-4xl{
    font-size: 2.25rem;
  }

  .md\:text-5xl{
    font-size: 3rem;
  }

  .md\:leading-none{
    line-height: 1;
  }

  .md\:leading-tight{
    line-height: 1.25;
  }

  .md\:leading-snug{
    line-height: 1.375;
  }

  .md\:leading-normal{
    line-height: 1.5;
  }

  .md\:leading-relaxed{
    line-height: 1.625;
  }

  .md\:leading-loose{
    line-height: 2;
  }

  .md\:list-inside{
    list-style-position: inside;
  }

  .md\:list-outside{
    list-style-position: outside;
  }

  .md\:list-none{
    list-style-type: none;
  }

  .md\:list-disc{
    list-style-type: disc;
  }

  .md\:list-decimal{
    list-style-type: decimal;
  }

  .md\:m-0{
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:m-auto{
    margin: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:mt-0{
    margin-top: 0;
  }

  .md\:mr-0{
    margin-right: 0;
  }

  .md\:mb-0{
    margin-bottom: 0;
  }

  .md\:ml-0{
    margin-left: 0;
  }

  .md\:mt-1{
    margin-top: 0.25rem;
  }

  .md\:mr-1{
    margin-right: 0.25rem;
  }

  .md\:mb-1{
    margin-bottom: 0.25rem;
  }

  .md\:ml-1{
    margin-left: 0.25rem;
  }

  .md\:mt-2{
    margin-top: 0.5rem;
  }

  .md\:mr-2{
    margin-right: 0.5rem;
  }

  .md\:mb-2{
    margin-bottom: 0.5rem;
  }

  .md\:ml-2{
    margin-left: 0.5rem;
  }

  .md\:mt-3{
    margin-top: 0.75rem;
  }

  .md\:mr-3{
    margin-right: 0.75rem;
  }

  .md\:mb-3{
    margin-bottom: 0.75rem;
  }

  .md\:ml-3{
    margin-left: 0.75rem;
  }

  .md\:mt-4{
    margin-top: 1rem;
  }

  .md\:mr-4{
    margin-right: 1rem;
  }

  .md\:mb-4{
    margin-bottom: 1rem;
  }

  .md\:ml-4{
    margin-left: 1rem;
  }

  .md\:mt-5{
    margin-top: 1.25rem;
  }

  .md\:mr-5{
    margin-right: 1.25rem;
  }

  .md\:mb-5{
    margin-bottom: 1.25rem;
  }

  .md\:ml-5{
    margin-left: 1.25rem;
  }

  .md\:mt-6{
    margin-top: 1.5rem;
  }

  .md\:mr-6{
    margin-right: 1.5rem;
  }

  .md\:mb-6{
    margin-bottom: 1.5rem;
  }

  .md\:ml-6{
    margin-left: 1.5rem;
  }

  .md\:mt-8{
    margin-top: 2rem;
  }

  .md\:mr-8{
    margin-right: 2rem;
  }

  .md\:mb-8{
    margin-bottom: 2rem;
  }

  .md\:ml-8{
    margin-left: 2rem;
  }

  .md\:mt-10{
    margin-top: 2.5rem;
  }

  .md\:mr-10{
    margin-right: 2.5rem;
  }

  .md\:mb-10{
    margin-bottom: 2.5rem;
  }

  .md\:ml-10{
    margin-left: 2.5rem;
  }

  .md\:mt-12{
    margin-top: 3rem;
  }

  .md\:mr-12{
    margin-right: 3rem;
  }

  .md\:mb-12{
    margin-bottom: 3rem;
  }

  .md\:ml-12{
    margin-left: 3rem;
  }

  .md\:mt-14{
    margin-top: 3.5rem;
  }

  .md\:mr-14{
    margin-right: 3.5rem;
  }

  .md\:mb-14{
    margin-bottom: 3.5rem;
  }

  .md\:ml-14{
    margin-left: 3.5rem;
  }

  .md\:mt-16{
    margin-top: 4rem;
  }

  .md\:mr-16{
    margin-right: 4rem;
  }

  .md\:mb-16{
    margin-bottom: 4rem;
  }

  .md\:ml-16{
    margin-left: 4rem;
  }

  .md\:mt-20{
    margin-top: 5rem;
  }

  .md\:mr-20{
    margin-right: 5rem;
  }

  .md\:mb-20{
    margin-bottom: 5rem;
  }

  .md\:ml-20{
    margin-left: 5rem;
  }

  .md\:mt-24{
    margin-top: 6rem;
  }

  .md\:mr-24{
    margin-right: 6rem;
  }

  .md\:mb-24{
    margin-bottom: 6rem;
  }

  .md\:ml-24{
    margin-left: 6rem;
  }

  .md\:mt-32{
    margin-top: 8rem;
  }

  .md\:mr-32{
    margin-right: 8rem;
  }

  .md\:mb-32{
    margin-bottom: 8rem;
  }

  .md\:ml-32{
    margin-left: 8rem;
  }

  .md\:mt-36{
    margin-top: 9rem;
  }

  .md\:mr-36{
    margin-right: 9rem;
  }

  .md\:mb-36{
    margin-bottom: 9rem;
  }

  .md\:ml-36{
    margin-left: 9rem;
  }

  .md\:mt-40{
    margin-top: 10rem;
  }

  .md\:mr-40{
    margin-right: 10rem;
  }

  .md\:mb-40{
    margin-bottom: 10rem;
  }

  .md\:ml-40{
    margin-left: 10rem;
  }

  .md\:mt-44{
    margin-top: 11rem;
  }

  .md\:mr-44{
    margin-right: 11rem;
  }

  .md\:mb-44{
    margin-bottom: 11rem;
  }

  .md\:ml-44{
    margin-left: 11rem;
  }

  .md\:mt-48{
    margin-top: 12rem;
  }

  .md\:mr-48{
    margin-right: 12rem;
  }

  .md\:mb-48{
    margin-bottom: 12rem;
  }

  .md\:ml-48{
    margin-left: 12rem;
  }

  .md\:mt-56{
    margin-top: 14rem;
  }

  .md\:mr-56{
    margin-right: 14rem;
  }

  .md\:mb-56{
    margin-bottom: 14rem;
  }

  .md\:ml-56{
    margin-left: 14rem;
  }

  .md\:mt-64{
    margin-top: 16rem;
  }

  .md\:mr-64{
    margin-right: 16rem;
  }

  .md\:mb-64{
    margin-bottom: 16rem;
  }

  .md\:ml-64{
    margin-left: 16rem;
  }

  .md\:mt-auto{
    margin-top: auto;
  }

  .md\:mr-auto{
    margin-right: auto;
  }

  .md\:mb-auto{
    margin-bottom: auto;
  }

  .md\:ml-auto{
    margin-left: auto;
  }

  .md\:mt-px{
    margin-top: 1px;
  }

  .md\:mr-px{
    margin-right: 1px;
  }

  .md\:mb-px{
    margin-bottom: 1px;
  }

  .md\:ml-px{
    margin-left: 1px;
  }

  .md\:-mt-1{
    margin-top: -0.25rem;
  }

  .md\:-mr-1{
    margin-right: -0.25rem;
  }

  .md\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .md\:-ml-1{
    margin-left: -0.25rem;
  }

  .md\:-mt-2{
    margin-top: -0.5rem;
  }

  .md\:-mr-2{
    margin-right: -0.5rem;
  }

  .md\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .md\:-ml-2{
    margin-left: -0.5rem;
  }

  .md\:-mt-3{
    margin-top: -0.75rem;
  }

  .md\:-mr-3{
    margin-right: -0.75rem;
  }

  .md\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .md\:-ml-3{
    margin-left: -0.75rem;
  }

  .md\:-mt-4{
    margin-top: -1rem;
  }

  .md\:-mr-4{
    margin-right: -1rem;
  }

  .md\:-mb-4{
    margin-bottom: -1rem;
  }

  .md\:-ml-4{
    margin-left: -1rem;
  }

  .md\:-mt-5{
    margin-top: -1.25rem;
  }

  .md\:-mr-5{
    margin-right: -1.25rem;
  }

  .md\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .md\:-ml-5{
    margin-left: -1.25rem;
  }

  .md\:-mt-6{
    margin-top: -1.5rem;
  }

  .md\:-mr-6{
    margin-right: -1.5rem;
  }

  .md\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .md\:-ml-6{
    margin-left: -1.5rem;
  }

  .md\:-mt-8{
    margin-top: -2rem;
  }

  .md\:-mr-8{
    margin-right: -2rem;
  }

  .md\:-mb-8{
    margin-bottom: -2rem;
  }

  .md\:-ml-8{
    margin-left: -2rem;
  }

  .md\:-mt-10{
    margin-top: -2.5rem;
  }

  .md\:-mr-10{
    margin-right: -2.5rem;
  }

  .md\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .md\:-ml-10{
    margin-left: -2.5rem;
  }

  .md\:-mt-12{
    margin-top: -3rem;
  }

  .md\:-mr-12{
    margin-right: -3rem;
  }

  .md\:-mb-12{
    margin-bottom: -3rem;
  }

  .md\:-ml-12{
    margin-left: -3rem;
  }

  .md\:-mt-14{
    margin-top: -3.5rem;
  }

  .md\:-mr-14{
    margin-right: -3.5rem;
  }

  .md\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .md\:-ml-14{
    margin-left: -3.5rem;
  }

  .md\:-mt-16{
    margin-top: -4rem;
  }

  .md\:-mr-16{
    margin-right: -4rem;
  }

  .md\:-mb-16{
    margin-bottom: -4rem;
  }

  .md\:-ml-16{
    margin-left: -4rem;
  }

  .md\:-mt-20{
    margin-top: -5rem;
  }

  .md\:-mr-20{
    margin-right: -5rem;
  }

  .md\:-mb-20{
    margin-bottom: -5rem;
  }

  .md\:-ml-20{
    margin-left: -5rem;
  }

  .md\:-mt-24{
    margin-top: -6rem;
  }

  .md\:-mr-24{
    margin-right: -6rem;
  }

  .md\:-mb-24{
    margin-bottom: -6rem;
  }

  .md\:-ml-24{
    margin-left: -6rem;
  }

  .md\:-mt-32{
    margin-top: -8rem;
  }

  .md\:-mr-32{
    margin-right: -8rem;
  }

  .md\:-mb-32{
    margin-bottom: -8rem;
  }

  .md\:-ml-32{
    margin-left: -8rem;
  }

  .md\:-mt-36{
    margin-top: -9rem;
  }

  .md\:-mr-36{
    margin-right: -9rem;
  }

  .md\:-mb-36{
    margin-bottom: -9rem;
  }

  .md\:-ml-36{
    margin-left: -9rem;
  }

  .md\:-mt-40{
    margin-top: -10rem;
  }

  .md\:-mr-40{
    margin-right: -10rem;
  }

  .md\:-mb-40{
    margin-bottom: -10rem;
  }

  .md\:-ml-40{
    margin-left: -10rem;
  }

  .md\:-mt-44{
    margin-top: -11rem;
  }

  .md\:-mr-44{
    margin-right: -11rem;
  }

  .md\:-mb-44{
    margin-bottom: -11rem;
  }

  .md\:-ml-44{
    margin-left: -11rem;
  }

  .md\:-mt-48{
    margin-top: -12rem;
  }

  .md\:-mr-48{
    margin-right: -12rem;
  }

  .md\:-mb-48{
    margin-bottom: -12rem;
  }

  .md\:-ml-48{
    margin-left: -12rem;
  }

  .md\:-mt-56{
    margin-top: -14rem;
  }

  .md\:-mr-56{
    margin-right: -14rem;
  }

  .md\:-mb-56{
    margin-bottom: -14rem;
  }

  .md\:-ml-56{
    margin-left: -14rem;
  }

  .md\:-mt-64{
    margin-top: -16rem;
  }

  .md\:-mr-64{
    margin-right: -16rem;
  }

  .md\:-mb-64{
    margin-bottom: -16rem;
  }

  .md\:-ml-64{
    margin-left: -16rem;
  }

  .md\:-mt-px{
    margin-top: -1px;
  }

  .md\:-mr-px{
    margin-right: -1px;
  }

  .md\:-mb-px{
    margin-bottom: -1px;
  }

  .md\:-ml-px{
    margin-left: -1px;
  }

  .md\:max-h-full{
    max-height: 100%;
  }

  .md\:max-h-screen{
    max-height: 100vh;
  }

  .md\:max-w-none{
    max-width: none;
  }

  .md\:max-w-xs{
    max-width: 20rem;
  }

  .md\:max-w-sm{
    max-width: 24rem;
  }

  .md\:max-w-md{
    max-width: 28rem;
  }

  .md\:max-w-lg{
    max-width: 32rem;
  }

  .md\:max-w-xl{
    max-width: 36rem;
  }

  .md\:max-w-2xl{
    max-width: 42rem;
  }

  .md\:max-w-3xl{
    max-width: 48rem;
  }

  .md\:max-w-4xl{
    max-width: 56rem;
  }

  .md\:max-w-5xl{
    max-width: 64rem;
  }

  .md\:max-w-6xl{
    max-width: 72rem;
  }

  .md\:max-w-full{
    max-width: 100%;
  }

  .md\:max-w-screen-xs{
    max-width: 420px;
  }

  .md\:max-w-screen-sm{
    max-width: 576px;
  }

  .md\:max-w-screen-md{
    max-width: 768px;
  }

  .md\:max-w-screen-lg{
    max-width: 992px;
  }

  .md\:max-w-screen-xl{
    max-width: 1200px;
  }

  .md\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .md\:max-w-screen-hd{
    max-width: 1920px;
  }

  .md\:min-h-0{
    min-height: 0;
  }

  .md\:min-h-full{
    min-height: 100%;
  }

  .md\:min-h-screen{
    min-height: 100vh;
  }

  .md\:min-w-0{
    min-width: 0;
  }

  .md\:min-w-1{
    min-width: 0.25rem;
  }

  .md\:min-w-2{
    min-width: 0.5rem;
  }

  .md\:min-w-3{
    min-width: 0.75rem;
  }

  .md\:min-w-4{
    min-width: 1rem;
  }

  .md\:min-w-5{
    min-width: 1.25rem;
  }

  .md\:min-w-6{
    min-width: 1.5rem;
  }

  .md\:min-w-8{
    min-width: 2rem;
  }

  .md\:min-w-10{
    min-width: 2.5rem;
  }

  .md\:min-w-12{
    min-width: 3rem;
  }

  .md\:min-w-14{
    min-width: 3.5rem;
  }

  .md\:min-w-16{
    min-width: 4rem;
  }

  .md\:min-w-20{
    min-width: 5rem;
  }

  .md\:min-w-24{
    min-width: 6rem;
  }

  .md\:min-w-32{
    min-width: 8rem;
  }

  .md\:min-w-36{
    min-width: 9rem;
  }

  .md\:min-w-40{
    min-width: 10rem;
  }

  .md\:min-w-44{
    min-width: 11rem;
  }

  .md\:min-w-48{
    min-width: 12rem;
  }

  .md\:min-w-56{
    min-width: 14rem;
  }

  .md\:min-w-64{
    min-width: 16rem;
  }

  .md\:min-w-px{
    min-width: 1px;
  }

  .md\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .md\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .md\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .md\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .md\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .md\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .md\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .md\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .md\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .md\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .md\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .md\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .md\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .md\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .md\:opacity-0{
    opacity: 0;
  }

  .md\:opacity-25{
    opacity: 0.25;
  }

  .md\:opacity-50{
    opacity: 0.5;
  }

  .md\:opacity-75{
    opacity: 0.75;
  }

  .md\:opacity-100{
    opacity: 1;
  }

  .md\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .md\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .md\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .md\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .md\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .md\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .md\:overflow-auto{
    overflow: auto;
  }

  .md\:overflow-hidden{
    overflow: hidden;
  }

  .md\:overflow-visible{
    overflow: visible;
  }

  .md\:overflow-scroll{
    overflow: scroll;
  }

  .md\:overflow-x-auto{
    overflow-x: auto;
  }

  .md\:overflow-y-auto{
    overflow-y: auto;
  }

  .md\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .md\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .md\:overflow-x-visible{
    overflow-x: visible;
  }

  .md\:overflow-y-visible{
    overflow-y: visible;
  }

  .md\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .md\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .md\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .md\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .md\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .md\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .md\:overscroll-none{
    overscroll-behavior: none;
  }

  .md\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .md\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .md\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .md\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .md\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .md\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .md\:p-0{
    padding: 0;
  }

  .md\:p-1{
    padding: 0.25rem;
  }

  .md\:p-2{
    padding: 0.5rem;
  }

  .md\:p-3{
    padding: 0.75rem;
  }

  .md\:p-4{
    padding: 1rem;
  }

  .md\:p-5{
    padding: 1.25rem;
  }

  .md\:p-6{
    padding: 1.5rem;
  }

  .md\:p-8{
    padding: 2rem;
  }

  .md\:p-10{
    padding: 2.5rem;
  }

  .md\:p-12{
    padding: 3rem;
  }

  .md\:p-14{
    padding: 3.5rem;
  }

  .md\:p-16{
    padding: 4rem;
  }

  .md\:p-20{
    padding: 5rem;
  }

  .md\:p-21{
    padding: 5.25rem;
  }

  .md\:p-24{
    padding: 6rem;
  }

  .md\:p-32{
    padding: 8rem;
  }

  .md\:p-36{
    padding: 9rem;
  }

  .md\:p-40{
    padding: 10rem;
  }

  .md\:p-44{
    padding: 11rem;
  }

  .md\:p-48{
    padding: 12rem;
  }

  .md\:p-56{
    padding: 14rem;
  }

  .md\:p-64{
    padding: 16rem;
  }

  .md\:p-px{
    padding: 1px;
  }

  .md\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .md\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .md\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .md\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .md\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .md\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:py-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .md\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .md\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .md\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .md\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .md\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .md\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .md\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .md\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .md\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .md\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .md\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .md\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .md\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .md\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .md\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .md\:pt-0{
    padding-top: 0;
  }

  .md\:pr-0{
    padding-right: 0;
  }

  .md\:pb-0{
    padding-bottom: 0;
  }

  .md\:pl-0{
    padding-left: 0;
  }

  .md\:pt-1{
    padding-top: 0.25rem;
  }

  .md\:pr-1{
    padding-right: 0.25rem;
  }

  .md\:pb-1{
    padding-bottom: 0.25rem;
  }

  .md\:pl-1{
    padding-left: 0.25rem;
  }

  .md\:pt-2{
    padding-top: 0.5rem;
  }

  .md\:pr-2{
    padding-right: 0.5rem;
  }

  .md\:pb-2{
    padding-bottom: 0.5rem;
  }

  .md\:pl-2{
    padding-left: 0.5rem;
  }

  .md\:pt-3{
    padding-top: 0.75rem;
  }

  .md\:pr-3{
    padding-right: 0.75rem;
  }

  .md\:pb-3{
    padding-bottom: 0.75rem;
  }

  .md\:pl-3{
    padding-left: 0.75rem;
  }

  .md\:pt-4{
    padding-top: 1rem;
  }

  .md\:pr-4{
    padding-right: 1rem;
  }

  .md\:pb-4{
    padding-bottom: 1rem;
  }

  .md\:pl-4{
    padding-left: 1rem;
  }

  .md\:pt-5{
    padding-top: 1.25rem;
  }

  .md\:pr-5{
    padding-right: 1.25rem;
  }

  .md\:pb-5{
    padding-bottom: 1.25rem;
  }

  .md\:pl-5{
    padding-left: 1.25rem;
  }

  .md\:pt-6{
    padding-top: 1.5rem;
  }

  .md\:pr-6{
    padding-right: 1.5rem;
  }

  .md\:pb-6{
    padding-bottom: 1.5rem;
  }

  .md\:pl-6{
    padding-left: 1.5rem;
  }

  .md\:pt-8{
    padding-top: 2rem;
  }

  .md\:pr-8{
    padding-right: 2rem;
  }

  .md\:pb-8{
    padding-bottom: 2rem;
  }

  .md\:pl-8{
    padding-left: 2rem;
  }

  .md\:pt-10{
    padding-top: 2.5rem;
  }

  .md\:pr-10{
    padding-right: 2.5rem;
  }

  .md\:pb-10{
    padding-bottom: 2.5rem;
  }

  .md\:pl-10{
    padding-left: 2.5rem;
  }

  .md\:pt-12{
    padding-top: 3rem;
  }

  .md\:pr-12{
    padding-right: 3rem;
  }

  .md\:pb-12{
    padding-bottom: 3rem;
  }

  .md\:pl-12{
    padding-left: 3rem;
  }

  .md\:pt-14{
    padding-top: 3.5rem;
  }

  .md\:pr-14{
    padding-right: 3.5rem;
  }

  .md\:pb-14{
    padding-bottom: 3.5rem;
  }

  .md\:pl-14{
    padding-left: 3.5rem;
  }

  .md\:pt-16{
    padding-top: 4rem;
  }

  .md\:pr-16{
    padding-right: 4rem;
  }

  .md\:pb-16{
    padding-bottom: 4rem;
  }

  .md\:pl-16{
    padding-left: 4rem;
  }

  .md\:pt-20{
    padding-top: 5rem;
  }

  .md\:pr-20{
    padding-right: 5rem;
  }

  .md\:pb-20{
    padding-bottom: 5rem;
  }

  .md\:pl-20{
    padding-left: 5rem;
  }

  .md\:pt-21{
    padding-top: 5.25rem;
  }

  .md\:pr-21{
    padding-right: 5.25rem;
  }

  .md\:pb-21{
    padding-bottom: 5.25rem;
  }

  .md\:pl-21{
    padding-left: 5.25rem;
  }

  .md\:pt-24{
    padding-top: 6rem;
  }

  .md\:pr-24{
    padding-right: 6rem;
  }

  .md\:pb-24{
    padding-bottom: 6rem;
  }

  .md\:pl-24{
    padding-left: 6rem;
  }

  .md\:pt-32{
    padding-top: 8rem;
  }

  .md\:pr-32{
    padding-right: 8rem;
  }

  .md\:pb-32{
    padding-bottom: 8rem;
  }

  .md\:pl-32{
    padding-left: 8rem;
  }

  .md\:pt-36{
    padding-top: 9rem;
  }

  .md\:pr-36{
    padding-right: 9rem;
  }

  .md\:pb-36{
    padding-bottom: 9rem;
  }

  .md\:pl-36{
    padding-left: 9rem;
  }

  .md\:pt-40{
    padding-top: 10rem;
  }

  .md\:pr-40{
    padding-right: 10rem;
  }

  .md\:pb-40{
    padding-bottom: 10rem;
  }

  .md\:pl-40{
    padding-left: 10rem;
  }

  .md\:pt-44{
    padding-top: 11rem;
  }

  .md\:pr-44{
    padding-right: 11rem;
  }

  .md\:pb-44{
    padding-bottom: 11rem;
  }

  .md\:pl-44{
    padding-left: 11rem;
  }

  .md\:pt-48{
    padding-top: 12rem;
  }

  .md\:pr-48{
    padding-right: 12rem;
  }

  .md\:pb-48{
    padding-bottom: 12rem;
  }

  .md\:pl-48{
    padding-left: 12rem;
  }

  .md\:pt-56{
    padding-top: 14rem;
  }

  .md\:pr-56{
    padding-right: 14rem;
  }

  .md\:pb-56{
    padding-bottom: 14rem;
  }

  .md\:pl-56{
    padding-left: 14rem;
  }

  .md\:pt-64{
    padding-top: 16rem;
  }

  .md\:pr-64{
    padding-right: 16rem;
  }

  .md\:pb-64{
    padding-bottom: 16rem;
  }

  .md\:pl-64{
    padding-left: 16rem;
  }

  .md\:pt-px{
    padding-top: 1px;
  }

  .md\:pr-px{
    padding-right: 1px;
  }

  .md\:pb-px{
    padding-bottom: 1px;
  }

  .md\:pl-px{
    padding-left: 1px;
  }

  .md\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .md\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .md\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .md\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .md\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:placeholder-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .md\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .md\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color: transparent;
  }

  .md\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .md\:focus\:placeholder-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .md\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .md\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .md\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .md\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .md\:placeholder-opacity-25::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:placeholder-opacity-50::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:placeholder-opacity-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .md\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .md\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .md\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .md\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .md\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .md\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .md\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .md\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .md\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .md\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

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

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

  .md\:static{
    position: static;
  }

  .md\:fixed{
    position: fixed;
  }

  .md\:absolute{
    position: absolute;
  }

  .md\:relative{
    position: relative;
  }

  .md\:sticky{
    position: sticky;
  }

  .md\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .md\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .md\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .md\:inset-x-0{
    right: 0;
    left: 0;
  }

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

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

  .md\:top-0{
    top: 0;
  }

  .md\:right-0{
    right: 0;
  }

  .md\:bottom-0{
    bottom: 0;
  }

  .md\:left-0{
    left: 0;
  }

  .md\:top-auto{
    top: auto;
  }

  .md\:right-auto{
    right: auto;
  }

  .md\:bottom-auto{
    bottom: auto;
  }

  .md\:left-auto{
    left: auto;
  }

  .md\:resize-none{
    resize: none;
  }

  .md\:resize-y{
    resize: vertical;
  }

  .md\:resize-x{
    resize: horizontal;
  }

  .md\:resize{
    resize: both;
  }

  .md\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .md\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .md\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .md\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .md\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .md\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .md\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .md\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .md\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .md\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .md\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .md\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .md\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .md\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .md\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .md\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .md\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .md\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .md\:fill-current{
    fill: currentColor;
  }

  .md\:stroke-current{
    stroke: currentColor;
  }

  .md\:stroke-0{
    stroke-width: 0;
  }

  .md\:stroke-1{
    stroke-width: 1;
  }

  .md\:stroke-2{
    stroke-width: 2;
  }

  .md\:table-auto{
    table-layout: auto;
  }

  .md\:table-fixed{
    table-layout: fixed;
  }

  .md\:text-left{
    text-align: left;
  }

  .md\:text-center{
    text-align: center;
  }

  .md\:text-right{
    text-align: right;
  }

  .md\:text-justify{
    text-align: justify;
  }

  .md\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .md\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:text-transparent{
    color: transparent;
  }

  .md\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .md\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .md\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .md\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .md\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .md\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .md\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .md\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .md\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .md\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .md\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .md\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .md\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .md\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .md\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .md\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .md\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .md\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .md\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .md\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .md\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .md\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .md\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .md\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .md\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .md\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .md\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .md\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .md\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .md\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .md\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .md\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:hover\:text-transparent:hover{
    color: transparent;
  }

  .md\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .md\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .md\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .md\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .md\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .md\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .md\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .md\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .md\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .md\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .md\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .md\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .md\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .md\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .md\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .md\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .md\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .md\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .md\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .md\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .md\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .md\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .md\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .md\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .md\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .md\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .md\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .md\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .md\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .md\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .md\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .md\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:focus\:text-transparent:focus{
    color: transparent;
  }

  .md\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .md\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .md\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .md\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .md\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .md\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .md\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .md\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .md\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .md\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .md\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .md\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .md\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .md\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .md\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .md\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .md\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .md\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .md\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .md\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .md\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .md\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .md\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .md\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .md\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .md\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:focus\:text-transparent:focus{
    color: transparent;
  }

  .md\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .md\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .md\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .md\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .md\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .md\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .md\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .md\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .md\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .md\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .md\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .md\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .md\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .md\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .md\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .md\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .md\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .md\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .md\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .md\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .md\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .md\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .md\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .md\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .md\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .md\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .md\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .md\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .md\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .md\:text-opacity-0{
    --text-opacity: 0;
  }

  .md\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .md\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .md\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .md\:text-opacity-100{
    --text-opacity: 1;
  }

  .md\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .md\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .md\:hover\:text-opacity-50:hover{
    --text-opacity: 0.5;
  }

  .md\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .md\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .md\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .md\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .md\:focus\:text-opacity-50:focus{
    --text-opacity: 0.5;
  }

  .md\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .md\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .md\:italic{
    font-style: italic;
  }

  .md\:not-italic{
    font-style: normal;
  }

  .md\:uppercase{
    text-transform: uppercase;
  }

  .md\:lowercase{
    text-transform: lowercase;
  }

  .md\:capitalize{
    text-transform: capitalize;
  }

  .md\:normal-case{
    text-transform: none;
  }

  .md\:underline{
    text-decoration: underline;
  }

  .md\:line-through{
    text-decoration: line-through;
  }

  .md\:no-underline{
    text-decoration: none;
  }

  .md\:hover\:underline:hover{
    text-decoration: underline;
  }

  .md\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .md\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .md\:focus\:underline:focus{
    text-decoration: underline;
  }

  .md\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .md\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .md\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\: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);
  }

  .md\:normal-nums{
    font-variant-numeric: normal;
  }

  .md\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .md\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .md\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .md\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .md\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .md\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .md\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .md\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .md\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .md\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .md\:tracking-normal{
    letter-spacing: 0;
  }

  .md\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .md\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .md\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .md\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .md\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .md\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .md\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .md\:align-baseline{
    vertical-align: baseline;
  }

  .md\:align-top{
    vertical-align: top;
  }

  .md\:align-middle{
    vertical-align: middle;
  }

  .md\:align-bottom{
    vertical-align: bottom;
  }

  .md\:align-text-top{
    vertical-align: text-top;
  }

  .md\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .md\:visible{
    visibility: visible;
  }

  .md\:invisible{
    visibility: hidden;
  }

  .md\:whitespace-normal{
    white-space: normal;
  }

  .md\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .md\:whitespace-pre{
    white-space: pre;
  }

  .md\:whitespace-pre-line{
    white-space: pre-line;
  }

  .md\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .md\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .md\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .md\:break-all{
    word-break: break-all;
  }

  .md\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .md\:w-0{
    width: 0;
  }

  .md\:w-1{
    width: 0.25rem;
  }

  .md\:w-2{
    width: 0.5rem;
  }

  .md\:w-3{
    width: 0.75rem;
  }

  .md\:w-4{
    width: 1rem;
  }

  .md\:w-5{
    width: 1.25rem;
  }

  .md\:w-6{
    width: 1.5rem;
  }

  .md\:w-8{
    width: 2rem;
  }

  .md\:w-10{
    width: 2.5rem;
  }

  .md\:w-12{
    width: 3rem;
  }

  .md\:w-14{
    width: 3.5rem;
  }

  .md\:w-16{
    width: 4rem;
  }

  .md\:w-20{
    width: 5rem;
  }

  .md\:w-24{
    width: 6rem;
  }

  .md\:w-32{
    width: 8rem;
  }

  .md\:w-36{
    width: 9rem;
  }

  .md\:w-40{
    width: 10rem;
  }

  .md\:w-44{
    width: 11rem;
  }

  .md\:w-48{
    width: 12rem;
  }

  .md\:w-56{
    width: 14rem;
  }

  .md\:w-64{
    width: 16rem;
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:w-px{
    width: 1px;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:w-1\/3{
    width: 33.333333%;
  }

  .md\:w-2\/3{
    width: 66.666667%;
  }

  .md\:w-1\/4{
    width: 25%;
  }

  .md\:w-2\/4{
    width: 50%;
  }

  .md\:w-3\/4{
    width: 75%;
  }

  .md\:w-1\/5{
    width: 20%;
  }

  .md\:w-2\/5{
    width: 40%;
  }

  .md\:w-3\/5{
    width: 60%;
  }

  .md\:w-4\/5{
    width: 80%;
  }

  .md\:w-1\/6{
    width: 16.666667%;
  }

  .md\:w-2\/6{
    width: 33.333333%;
  }

  .md\:w-3\/6{
    width: 50%;
  }

  .md\:w-4\/6{
    width: 66.666667%;
  }

  .md\:w-5\/6{
    width: 83.333333%;
  }

  .md\:w-1\/12{
    width: 8.333333%;
  }

  .md\:w-2\/12{
    width: 16.666667%;
  }

  .md\:w-3\/12{
    width: 25%;
  }

  .md\:w-4\/12{
    width: 33.333333%;
  }

  .md\:w-5\/12{
    width: 41.666667%;
  }

  .md\:w-6\/12{
    width: 50%;
  }

  .md\:w-7\/12{
    width: 58.333333%;
  }

  .md\:w-8\/12{
    width: 66.666667%;
  }

  .md\:w-9\/12{
    width: 75%;
  }

  .md\:w-10\/12{
    width: 83.333333%;
  }

  .md\:w-11\/12{
    width: 91.666667%;
  }

  .md\:w-full{
    width: 100%;
  }

  .md\:w-screen{
    width: 100vw;
  }

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

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

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

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

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

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

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

  .md\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .md\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .md\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .md\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .md\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .md\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .md\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .md\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .md\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .md\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .md\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .md\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .md\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .md\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .md\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .md\:gap-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .md\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .md\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .md\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .md\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .md\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .md\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .md\:col-gap-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .md\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .md\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .md\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .md\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .md\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .md\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .md\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .md\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .md\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .md\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .md\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .md\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .md\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .md\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .md\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .md\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .md\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .md\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .md\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .md\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .md\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .md\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .md\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .md\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .md\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .md\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .md\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .md\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .md\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .md\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .md\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .md\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .md\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .md\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .md\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .md\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .md\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .md\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .md\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .md\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .md\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .md\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .md\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .md\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .md\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .md\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .md\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .md\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .md\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .md\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .md\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .md\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .md\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .md\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .md\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .md\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .md\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .md\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .md\:row-gap-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .md\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .md\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .md\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .md\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .md\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .md\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .md\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .md\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .md\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .md\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .md\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .md\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .md\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .md\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .md\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .md\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .md\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .md\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .md\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .md\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .md\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .md\:gap-y-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .md\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .md\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .md\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .md\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .md\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .md\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .md\:grid-flow-row{
    grid-auto-flow: row;
  }

  .md\:grid-flow-col{
    grid-auto-flow: column;
  }

  .md\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .md\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .md\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .md\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .md\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .md\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .md\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-none{
    grid-template-columns: none;
  }

  .md\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .md\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .md\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .md\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:col-start-1{
    grid-column-start: 1;
  }

  .md\:col-start-2{
    grid-column-start: 2;
  }

  .md\:col-start-3{
    grid-column-start: 3;
  }

  .md\:col-start-4{
    grid-column-start: 4;
  }

  .md\:col-start-5{
    grid-column-start: 5;
  }

  .md\:col-start-6{
    grid-column-start: 6;
  }

  .md\:col-start-7{
    grid-column-start: 7;
  }

  .md\:col-start-8{
    grid-column-start: 8;
  }

  .md\:col-start-9{
    grid-column-start: 9;
  }

  .md\:col-start-10{
    grid-column-start: 10;
  }

  .md\:col-start-11{
    grid-column-start: 11;
  }

  .md\:col-start-12{
    grid-column-start: 12;
  }

  .md\:col-start-13{
    grid-column-start: 13;
  }

  .md\:col-start-auto{
    grid-column-start: auto;
  }

  .md\:col-end-1{
    grid-column-end: 1;
  }

  .md\:col-end-2{
    grid-column-end: 2;
  }

  .md\:col-end-3{
    grid-column-end: 3;
  }

  .md\:col-end-4{
    grid-column-end: 4;
  }

  .md\:col-end-5{
    grid-column-end: 5;
  }

  .md\:col-end-6{
    grid-column-end: 6;
  }

  .md\:col-end-7{
    grid-column-end: 7;
  }

  .md\:col-end-8{
    grid-column-end: 8;
  }

  .md\:col-end-9{
    grid-column-end: 9;
  }

  .md\:col-end-10{
    grid-column-end: 10;
  }

  .md\:col-end-11{
    grid-column-end: 11;
  }

  .md\:col-end-12{
    grid-column-end: 12;
  }

  .md\:col-end-13{
    grid-column-end: 13;
  }

  .md\:col-end-auto{
    grid-column-end: auto;
  }

  .md\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .md\:grid-rows-none{
    grid-template-rows: none;
  }

  .md\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .md\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .md\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .md\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .md\:row-auto{
    grid-row: auto;
  }

  .md\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .md\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .md\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .md\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .md\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .md\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .md\:row-span-full{
    grid-row: 1 / -1;
  }

  .md\:row-start-1{
    grid-row-start: 1;
  }

  .md\:row-start-2{
    grid-row-start: 2;
  }

  .md\:row-start-3{
    grid-row-start: 3;
  }

  .md\:row-start-4{
    grid-row-start: 4;
  }

  .md\:row-start-5{
    grid-row-start: 5;
  }

  .md\:row-start-6{
    grid-row-start: 6;
  }

  .md\:row-start-7{
    grid-row-start: 7;
  }

  .md\:row-start-auto{
    grid-row-start: auto;
  }

  .md\:row-end-1{
    grid-row-end: 1;
  }

  .md\:row-end-2{
    grid-row-end: 2;
  }

  .md\:row-end-3{
    grid-row-end: 3;
  }

  .md\:row-end-4{
    grid-row-end: 4;
  }

  .md\:row-end-5{
    grid-row-end: 5;
  }

  .md\:row-end-6{
    grid-row-end: 6;
  }

  .md\:row-end-7{
    grid-row-end: 7;
  }

  .md\:row-end-auto{
    grid-row-end: auto;
  }

  .md\: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;
    -webkit-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: 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));
  }

  .md\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .md\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .md\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .md\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .md\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .md\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .md\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .md\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .md\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .md\:origin-top-left{
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }

  .md\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .md\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .md\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .md\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .md\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .md\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .md\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .md\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .md\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .md\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .md\:scale-x-0{
    --transform-scale-x: 0;
  }

  .md\:scale-x-50{
    --transform-scale-x: .5;
  }

  .md\:scale-x-75{
    --transform-scale-x: .75;
  }

  .md\:scale-x-90{
    --transform-scale-x: .9;
  }

  .md\:scale-x-95{
    --transform-scale-x: .95;
  }

  .md\:scale-x-100{
    --transform-scale-x: 1;
  }

  .md\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .md\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .md\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .md\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .md\:scale-y-0{
    --transform-scale-y: 0;
  }

  .md\:scale-y-50{
    --transform-scale-y: .5;
  }

  .md\:scale-y-75{
    --transform-scale-y: .75;
  }

  .md\:scale-y-90{
    --transform-scale-y: .9;
  }

  .md\:scale-y-95{
    --transform-scale-y: .95;
  }

  .md\:scale-y-100{
    --transform-scale-y: 1;
  }

  .md\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .md\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .md\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .md\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .md\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .md\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .md\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .md\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .md\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .md\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .md\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .md\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .md\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .md\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .md\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .md\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .md\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .md\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .md\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .md\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .md\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .md\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .md\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .md\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .md\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .md\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .md\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .md\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .md\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .md\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .md\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .md\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .md\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .md\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .md\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .md\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .md\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .md\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .md\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .md\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .md\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .md\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .md\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .md\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .md\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .md\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .md\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .md\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .md\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .md\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .md\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .md\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .md\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .md\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .md\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .md\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .md\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .md\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .md\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .md\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .md\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .md\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .md\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .md\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .md\:rotate-0{
    --transform-rotate: 0;
  }

  .md\:rotate-1{
    --transform-rotate: 1deg;
  }

  .md\:rotate-2{
    --transform-rotate: 2deg;
  }

  .md\:rotate-3{
    --transform-rotate: 3deg;
  }

  .md\:rotate-6{
    --transform-rotate: 6deg;
  }

  .md\:rotate-12{
    --transform-rotate: 12deg;
  }

  .md\:rotate-45{
    --transform-rotate: 45deg;
  }

  .md\:rotate-90{
    --transform-rotate: 90deg;
  }

  .md\:rotate-180{
    --transform-rotate: 180deg;
  }

  .md\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .md\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .md\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .md\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .md\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .md\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .md\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .md\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .md\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .md\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .md\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .md\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .md\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .md\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .md\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .md\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .md\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .md\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .md\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .md\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .md\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .md\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .md\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .md\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .md\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .md\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .md\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .md\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .md\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .md\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .md\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .md\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .md\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .md\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .md\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .md\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .md\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .md\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .md\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .md\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .md\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .md\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .md\:translate-x-0{
    --transform-translate-x: 0;
  }

  .md\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .md\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .md\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .md\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .md\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .md\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .md\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .md\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .md\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .md\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .md\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .md\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .md\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .md\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .md\:translate-x-36{
    --transform-translate-x: 9rem;
  }

  .md\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .md\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .md\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .md\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .md\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .md\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .md\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .md\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .md\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .md\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .md\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .md\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .md\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .md\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .md\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .md\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .md\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .md\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .md\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .md\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .md\:-translate-x-36{
    --transform-translate-x: -9rem;
  }

  .md\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .md\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .md\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .md\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .md\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .md\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .md\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .md\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .md\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .md\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .md\:translate-y-0{
    --transform-translate-y: 0;
  }

  .md\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .md\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .md\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .md\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .md\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .md\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .md\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .md\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .md\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .md\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .md\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .md\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .md\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .md\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .md\:translate-y-36{
    --transform-translate-y: 9rem;
  }

  .md\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .md\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .md\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .md\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .md\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .md\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .md\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .md\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .md\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .md\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .md\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .md\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .md\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .md\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .md\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .md\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .md\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .md\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .md\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .md\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .md\:-translate-y-36{
    --transform-translate-y: -9rem;
  }

  .md\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .md\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .md\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .md\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .md\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .md\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .md\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .md\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .md\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .md\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .md\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .md\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .md\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .md\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .md\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .md\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .md\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .md\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .md\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .md\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .md\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .md\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .md\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .md\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .md\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .md\:hover\:translate-x-36:hover{
    --transform-translate-x: 9rem;
  }

  .md\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .md\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .md\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .md\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .md\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .md\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .md\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .md\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .md\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .md\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .md\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .md\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .md\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .md\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .md\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .md\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .md\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .md\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .md\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .md\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .md\:hover\:-translate-x-36:hover{
    --transform-translate-x: -9rem;
  }

  .md\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .md\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .md\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .md\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .md\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .md\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .md\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .md\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .md\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .md\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .md\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .md\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .md\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .md\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .md\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .md\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .md\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .md\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .md\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .md\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .md\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .md\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .md\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .md\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .md\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .md\:hover\:translate-y-36:hover{
    --transform-translate-y: 9rem;
  }

  .md\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .md\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .md\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .md\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .md\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .md\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .md\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .md\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .md\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .md\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .md\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .md\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .md\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .md\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .md\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .md\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .md\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .md\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .md\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .md\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .md\:hover\:-translate-y-36:hover{
    --transform-translate-y: -9rem;
  }

  .md\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .md\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .md\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .md\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .md\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .md\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .md\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .md\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .md\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .md\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .md\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .md\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .md\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .md\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .md\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .md\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .md\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .md\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .md\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .md\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .md\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .md\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .md\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .md\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .md\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .md\:focus\:translate-x-36:focus{
    --transform-translate-x: 9rem;
  }

  .md\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .md\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .md\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .md\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .md\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .md\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .md\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .md\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .md\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .md\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .md\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .md\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .md\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .md\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .md\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .md\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .md\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .md\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .md\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .md\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .md\:focus\:-translate-x-36:focus{
    --transform-translate-x: -9rem;
  }

  .md\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .md\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .md\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .md\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .md\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .md\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .md\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .md\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .md\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .md\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .md\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .md\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .md\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .md\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .md\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .md\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .md\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .md\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .md\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .md\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .md\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .md\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .md\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .md\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .md\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .md\:focus\:translate-y-36:focus{
    --transform-translate-y: 9rem;
  }

  .md\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .md\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .md\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .md\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .md\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .md\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .md\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .md\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .md\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .md\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .md\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .md\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .md\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .md\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .md\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .md\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .md\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .md\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .md\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .md\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .md\:focus\:-translate-y-36:focus{
    --transform-translate-y: -9rem;
  }

  .md\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .md\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .md\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .md\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .md\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .md\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .md\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .md\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .md\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .md\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .md\:skew-x-0{
    --transform-skew-x: 0;
  }

  .md\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .md\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .md\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .md\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .md\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .md\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .md\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .md\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .md\:-skew-x-2{
    --transform-skew-x: -2deg;
  }

  .md\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .md\:skew-y-0{
    --transform-skew-y: 0;
  }

  .md\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .md\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .md\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .md\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .md\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .md\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .md\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .md\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .md\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .md\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .md\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .md\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .md\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .md\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .md\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .md\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .md\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .md\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .md\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .md\:hover\:-skew-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .md\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .md\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .md\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .md\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .md\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .md\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .md\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .md\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .md\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .md\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .md\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .md\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .md\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .md\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .md\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .md\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .md\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .md\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .md\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .md\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .md\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .md\:focus\:-skew-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .md\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .md\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .md\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .md\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .md\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .md\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .md\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .md\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .md\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .md\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .md\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .md\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .md\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .md\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .md\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .md\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .md\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .md\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .md\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .md\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .md\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .md\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .md\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .md\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .md\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .md\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .md\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .md\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .md\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .md\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .md\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .md\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .md\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .md\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .md\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .md\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .md\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .md\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .md\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .md\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .md\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .md\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .md\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .md\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .md\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .md\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .md\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .md\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .md\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .md\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .md\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .md\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .md\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .md\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .md\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .md\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .md\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .md\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .md\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .md\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .md\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .md\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .md\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .md\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .md\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .md\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .md\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .md\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .md\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .md\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .md\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .md\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .md\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .md\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .md\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .md\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .md\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .md\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .md\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .md\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .md\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .md\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .md\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .md\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .md\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .md\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .md\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .md\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .md\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .md\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .md\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .md\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .md\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .md\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .md\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .md\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .md\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .md\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .md\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .md\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .md\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .md\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .md\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .md\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .md\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .md\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .md\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .md\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .md\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .md\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .md\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .md\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .md\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .md\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .md\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .md\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .md\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .md\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .md\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .md\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .md\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .md\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .md\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .md\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .md\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .md\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .md\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .md\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .md\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .md\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .md\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .md\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .md\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .md\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .md\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .md\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .md\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .md\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .md\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .md\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .md\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .md\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .md\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .md\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .md\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .md\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .md\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .md\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .md\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .md\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .md\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .md\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .md\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .md\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .md\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .md\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .md\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .md\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .md\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .md\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .md\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .md\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .md\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .md\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .md\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .md\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .md\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .md\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .md\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .md\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .md\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .md\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .md\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .md\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .md\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .md\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .md\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .md\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .md\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .md\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .md\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .md\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .md\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .md\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .md\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .md\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .md\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .md\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .md\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .md\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .md\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .md\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .md\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .md\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .md\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .md\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .md\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .md\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .md\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .md\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .md\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .md\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .md\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .md\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .md\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .md\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .md\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .md\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .md\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .md\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .md\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .md\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .md\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .md\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .md\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .md\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .md\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .md\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .md\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .md\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .md\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .md\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .md\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .md\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .md\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .md\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .md\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .md\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .md\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .md\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .md\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .md\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .md\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .md\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .md\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .md\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .md\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .md\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .md\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .md\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .md\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .md\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .md\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .md\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .md\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .md\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .md\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .md\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .md\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .md\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .md\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .md\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .md\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .md\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .md\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .md\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .md\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .md\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .md\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .md\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .md\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .md\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .md\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .md\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .md\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .md\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .md\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .md\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .md\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .md\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .md\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .md\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .md\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .md\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .md\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .md\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .md\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .md\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .md\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .md\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .md\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .md\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .md\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .md\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .md\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .md\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .md\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .md\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .md\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .md\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .md\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .md\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .md\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .md\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .md\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .md\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .md\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .md\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .md\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .md\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .md\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .md\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .md\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .md\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .md\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .md\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .md\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .md\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .md\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .md\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .md\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .md\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .md\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .md\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .md\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .md\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .md\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .md\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .md\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .md\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .md\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .md\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .md\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .md\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .md\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .md\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .md\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .md\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .md\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .md\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .md\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .md\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .md\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .md\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .md\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .md\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .md\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .md\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .md\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .md\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .md\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .md\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .md\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .md\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .md\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .md\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .md\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .md\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .md\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .md\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .md\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .md\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .md\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .md\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .md\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .md\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .md\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .md\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .md\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .md\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .md\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .md\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .md\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .md\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .md\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .md\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .md\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .md\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .md\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .md\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .md\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .md\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .md\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .md\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .md\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .md\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .md\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .md\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .md\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .md\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .md\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .md\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .md\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .md\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .md\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .md\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .md\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .md\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .md\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .md\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .md\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .md\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .md\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .md\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .md\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .md\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .md\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .md\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .md\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .md\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .md\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .md\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .md\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .md\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .md\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .md\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .md\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .md\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .md\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .md\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .md\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .md\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .md\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .md\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .md\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .md\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .md\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .md\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .md\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .md\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .md\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .md\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .md\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .md\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .md\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .md\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .md\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .md\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .md\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .md\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .md\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .md\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .md\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .md\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .md\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .md\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .md\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .md\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .md\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .md\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .md\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .md\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .md\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .md\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .md\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .md\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .md\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .md\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .md\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .md\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .md\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .md\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .md\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .md\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .md\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .md\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .md\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .md\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .md\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .md\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .md\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .md\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .md\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .md\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .md\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .md\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .md\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .md\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .md\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .md\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .md\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .md\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .md\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .md\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .md\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .md\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .md\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .md\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .md\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .md\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .md\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .md\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .md\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .md\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .md\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .md\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .md\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .md\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .md\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .md\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .md\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .md\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .md\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .md\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .md\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .md\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .md\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .md\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .md\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .md\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .md\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .md\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .md\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .md\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .md\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .md\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .md\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .md\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .md\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .md\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .md\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .md\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .md\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .md\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .md\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .md\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .md\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .md\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .md\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .md\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .md\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .md\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .md\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .md\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .md\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .md\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .md\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .md\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .md\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .md\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .md\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .md\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .md\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .md\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .md\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .md\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .md\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .md\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .md\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .md\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .md\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .md\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .md\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .md\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .md\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .md\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .md\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .md\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .md\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .md\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .md\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .md\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .md\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .md\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .md\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .md\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .md\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .md\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .md\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .md\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .md\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .md\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .md\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .md\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .md\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .md\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .md\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .md\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .md\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .md\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .md\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .md\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .md\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .md\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .md\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .md\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .md\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .md\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .md\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .md\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .md\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .md\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .md\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .md\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .md\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .md\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .md\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .md\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .md\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .md\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .md\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .md\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .md\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .md\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .md\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .md\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .md\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .md\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .md\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .md\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .md\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .md\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .md\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .md\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .md\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .md\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .md\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .md\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .md\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .md\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .md\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .md\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .md\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .md\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .md\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .md\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .md\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .md\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .md\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .md\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .md\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .md\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .md\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .md\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .md\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .md\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .md\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .md\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .md\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .md\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .md\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .md\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .md\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .md\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .md\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .md\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .md\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .md\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .md\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .md\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .md\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .md\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .md\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .md\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .md\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .md\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .md\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .md\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .md\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .md\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .md\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .md\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .md\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .md\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .md\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .md\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .md\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .md\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .md\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .md\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .md\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .md\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .md\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .md\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .md\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .md\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .md\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .md\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .md\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .md\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .md\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .md\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .md\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .md\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .md\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .md\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .md\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .md\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .md\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .md\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .md\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .md\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .md\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .md\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .md\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .md\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .md\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .md\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .md\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .md\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .md\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .md\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .md\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .md\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .md\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .md\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .md\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .md\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .md\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .md\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .md\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .md\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .md\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .md\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .md\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .md\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .md\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .md\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .md\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .md\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .md\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .md\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .md\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .md\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .md\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .md\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .md\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .md\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .md\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .md\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .md\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .md\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .md\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .md\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .md\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .md\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .md\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .md\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .md\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .md\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .md\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .md\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .md\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .md\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .md\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .md\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .md\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .md\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .md\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .md\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .md\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .md\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .md\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .md\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .md\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .md\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .md\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .md\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .md\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .md\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .md\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .md\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .md\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .md\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .md\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .md\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .md\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .md\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .md\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .md\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .md\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .md\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .md\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .md\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .md\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .md\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .md\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .md\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .md\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .md\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .md\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .md\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .md\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .md\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .md\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .md\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .md\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .md\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .md\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .md\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .md\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .md\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .md\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .md\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .md\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .md\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .md\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .md\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .md\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .md\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .md\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .md\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .md\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .md\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .md\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .md\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .md\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .md\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .md\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .md\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .md\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .md\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .md\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .md\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .md\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .md\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .md\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .md\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .md\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .md\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .md\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .md\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .md\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .md\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .md\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .md\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .md\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .md\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .md\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .md\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .md\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .md\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .md\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .md\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .md\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .md\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .md\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .md\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .md\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .md\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .md\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .md\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .md\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .md\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .md\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .md\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .md\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .md\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .md\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .md\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .md\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .md\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .md\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .md\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .md\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .md\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .md\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .md\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .md\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .md\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .md\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .md\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .md\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .md\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .md\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .md\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .md\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .md\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .md\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .md\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .md\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .md\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .md\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .md\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .md\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .md\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .md\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .md\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .md\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .md\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .md\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .md\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .md\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .md\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .md\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .md\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .md\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .md\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .md\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .md\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .md\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .md\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .md\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .md\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .md\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .md\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .md\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .md\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .md\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .md\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .md\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .md\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .md\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .md\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .md\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .md\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .md\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .md\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .md\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .md\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .md\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .md\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .md\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .md\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .md\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .md\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .md\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .md\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .md\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .md\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .md\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .md\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .md\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .md\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .md\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .md\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .md\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .md\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .md\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .md\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .md\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .md\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .md\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .md\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .md\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .md\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .md\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .md\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .md\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .md\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .md\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .md\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .md\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .md\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .md\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .md\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .md\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .md\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .md\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .md\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .md\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .md\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .md\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .md\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .md\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .md\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .md\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .md\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .md\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .md\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .md\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .md\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .md\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .md\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .md\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .md\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .md\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .md\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .md\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .md\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .md\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .md\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .md\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .md\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .md\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .md\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .md\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .md\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .md\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .md\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .md\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .md\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .md\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .md\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .md\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .md\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .md\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .md\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .md\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .md\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .md\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .md\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .md\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .md\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .md\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .md\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .md\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .md\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .md\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .md\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .md\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .md\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .md\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .md\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .md\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .md\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .md\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .md\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .md\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .md\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .md\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .md\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .md\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .md\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .md\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .md\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .md\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .md\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .md\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .md\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .md\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .md\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .md\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .md\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .md\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .md\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .md\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .md\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .md\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .md\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .md\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .md\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .md\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .md\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .md\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .md\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .md\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .md\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .md\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .md\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .md\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .md\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .md\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .md\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .md\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .md\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .md\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .md\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .md\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .md\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .md\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .md\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .md\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .md\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .md\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .md\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .md\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .md\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .md\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .md\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .md\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .md\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .md\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .md\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .md\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .md\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .md\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .md\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .md\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .md\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .md\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .md\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .md\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .md\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .md\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .md\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .md\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .md\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .md\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .md\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .md\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .md\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .md\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .md\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .md\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .md\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .md\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .md\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .md\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .md\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .md\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .md\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .md\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .md\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .md\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .md\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .md\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .md\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .md\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .md\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .md\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .md\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .md\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .md\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .md\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .md\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .md\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .md\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .md\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .md\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .md\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .md\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .md\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .md\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .md\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .md\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .md\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .md\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .md\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .md\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .md\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .md\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .md\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .md\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .md\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .md\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .md\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .md\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .md\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .md\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .md\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .md\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .md\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .md\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .md\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .md\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .md\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .md\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .md\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .md\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .md\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .md\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .md\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .md\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .md\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .md\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .md\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .md\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .md\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .md\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .md\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .md\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .md\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .md\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .md\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .md\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .md\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .md\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .md\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .md\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .md\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .md\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .md\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .md\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .md\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .md\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .md\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .md\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .md\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .md\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .md\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .md\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .md\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .md\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .md\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .md\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .md\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .md\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .md\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .md\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .md\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .md\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .md\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .md\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .md\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .md\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .md\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .md\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .md\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .md\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .md\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .md\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .md\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .md\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .md\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .md\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .md\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .md\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .md\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .md\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .md\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .md\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .md\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .md\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .md\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .md\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .md\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .md\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .md\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .md\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .md\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .md\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .md\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .md\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .md\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .md\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .md\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .md\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .md\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .md\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .md\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .md\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .md\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .md\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .md\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .md\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .md\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .md\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .md\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .md\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .md\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .md\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .md\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .md\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .md\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .md\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .md\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .md\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .md\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .md\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .md\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .md\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .md\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .md\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .md\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .md\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .md\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .md\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .md\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .md\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .md\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .md\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .md\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .md\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .md\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .md\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .md\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .md\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .md\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .md\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .md\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .md\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .md\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .md\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .md\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .md\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .md\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .md\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .md\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .md\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .md\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .md\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .md\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .md\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .md\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .md\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .md\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .md\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .md\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .md\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .md\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .md\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .md\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .md\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .md\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .md\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .md\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .md\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .md\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .md\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .md\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .md\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .md\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .md\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .md\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .md\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .md\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .md\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .md\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .md\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .md\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .md\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .md\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .md\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .md\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .md\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .md\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .md\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .md\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .md\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .md\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .md\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .md\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .md\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .md\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .md\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .md\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .md\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .md\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .md\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .md\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .md\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .md\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .md\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .md\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .md\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .md\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .md\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .md\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .md\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .md\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .md\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .md\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .md\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .md\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .md\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .md\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .md\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .md\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .md\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .md\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .md\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .md\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .md\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .md\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .md\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .md\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .md\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .md\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .md\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .md\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .md\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .md\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .md\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .md\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .md\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .md\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .md\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .md\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .md\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .md\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .md\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .md\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .md\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .md\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .md\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .md\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .md\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .md\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .md\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .md\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .md\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .md\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .md\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .md\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .md\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .md\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .md\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .md\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .md\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .md\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .md\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .md\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .md\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .md\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .md\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .md\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .md\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .md\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .md\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .md\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .md\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .md\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .md\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .md\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .md\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .md\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .md\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .md\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .md\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .md\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .md\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .md\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .md\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .md\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .md\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .md\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .md\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .md\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .md\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .md\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .md\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .md\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .md\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .md\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .md\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .md\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .md\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .md\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .md\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .md\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .md\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .md\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .md\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .md\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .md\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .md\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .md\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .md\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .md\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .md\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .md\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .md\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .md\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .md\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .md\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .md\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .md\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .md\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .md\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .md\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .md\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .md\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .md\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .md\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .md\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .md\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .md\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .md\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .md\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .md\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .md\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .md\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .md\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .md\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .md\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .md\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .md\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .md\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .md\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .md\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .md\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .md\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .md\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .md\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .md\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .md\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .md\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .md\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .md\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .md\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .md\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .md\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .md\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .md\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .md\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .md\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .md\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .md\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .md\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .md\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .md\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .md\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .md\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .md\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .md\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .md\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .md\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .md\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .md\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .md\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .md\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .md\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .md\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .md\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .md\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .md\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .md\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .md\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .md\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .md\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .md\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .md\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .md\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .md\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .md\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .md\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .md\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .md\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .md\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .md\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .md\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .md\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .md\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .md\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .md\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .md\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .md\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .md\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .md\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .md\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .md\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .md\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .md\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .md\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .md\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .md\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .md\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .md\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .md\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .md\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .md\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .md\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .md\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .md\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .md\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .md\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .md\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .md\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .md\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .md\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .md\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .md\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .md\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .md\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .md\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .md\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .md\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .md\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .md\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .md\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .md\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .md\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .md\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .md\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .md\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .md\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .md\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .md\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .md\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .md\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .md\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .md\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .md\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .md\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .md\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .md\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .md\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .md\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .md\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .md\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .md\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .md\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .md\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .md\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .md\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .md\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .md\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .md\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .md\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .md\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .md\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .md\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .md\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .md\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .md\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .md\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .md\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .md\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .md\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .md\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .md\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .md\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .md\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .md\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .md\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .md\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .md\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .md\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .md\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .md\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .md\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .md\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .md\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .md\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .md\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .md\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .md\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .md\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .md\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .md\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .md\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .md\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .md\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .md\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .md\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .md\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .md\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .md\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .md\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .md\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .md\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .md\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .md\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .md\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .md\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .md\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .md\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .md\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .md\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .md\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .md\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .md\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .md\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .md\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .md\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .md\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .md\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .md\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .md\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .md\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .md\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .md\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .md\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .md\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .md\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .md\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .md\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .md\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .md\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .md\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .md\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .md\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .md\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .md\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .md\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .md\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .md\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .md\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .md\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .md\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .md\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .md\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .md\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .md\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .md\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .md\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .md\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .md\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .md\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .md\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .md\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .md\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .md\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .md\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .md\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .md\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .md\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .md\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .md\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .md\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .md\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .md\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .md\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .md\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .md\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .md\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .md\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .md\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .md\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .md\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .md\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .md\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .md\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .md\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .md\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .md\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .md\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .md\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .md\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .md\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .md\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .md\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .md\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .md\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .md\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .md\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .md\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .md\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .md\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .md\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .md\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .md\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .md\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .md\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .md\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .md\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .md\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .md\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .md\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .md\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .md\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .md\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .md\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .md\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .md\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .md\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .md\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .md\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .md\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .md\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .md\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .md\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .md\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .md\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .md\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .md\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .md\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .md\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .md\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .md\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .md\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .md\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .md\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .md\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .md\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .md\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .md\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .md\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .md\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .md\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .md\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .md\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .md\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .md\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .md\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .md\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .md\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .md\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .md\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .md\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .md\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .md\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .md\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .md\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .md\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .md\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .md\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .md\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .md\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .md\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .md\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .md\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .md\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .md\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .md\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .md\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .md\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .md\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .md\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .md\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .md\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .md\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .md\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .md\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .md\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .md\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .md\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .md\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .md\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .md\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .md\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .md\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .md\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .md\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .md\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .md\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .md\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .md\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .md\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .md\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .md\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .md\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .md\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .md\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .md\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .md\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .md\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .md\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .md\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .md\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .md\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .md\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .md\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .md\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .md\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .md\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .md\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .md\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .md\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .md\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .md\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .md\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .md\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .md\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .md\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .md\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .md\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .md\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .md\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .md\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .md\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .md\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .md\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .md\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .md\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .md\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .md\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .md\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .md\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .md\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .md\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .md\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .md\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .md\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .md\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .md\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .md\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .md\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .md\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .md\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .md\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .md\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .md\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .md\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .md\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .md\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .md\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .md\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .md\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .md\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .md\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .md\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .md\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .md\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .md\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .md\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .md\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .md\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .md\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .md\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .md\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .md\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .md\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .md\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .md\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .md\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .md\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .md\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .md\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .md\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .md\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .md\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .md\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .md\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .md\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .md\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .md\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .md\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .md\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .md\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .md\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .md\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .md\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .md\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .md\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .md\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .md\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .md\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .md\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .md\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .md\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .md\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .md\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .md\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .md\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .md\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .md\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .md\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .md\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .md\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .md\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .md\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .md\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .md\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .md\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .md\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .md\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .md\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .md\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .md\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .md\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .md\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .md\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .md\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .md\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .md\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .md\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .md\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .md\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .md\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .md\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .md\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .md\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .md\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .md\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .md\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .md\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .md\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .md\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .md\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .md\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .md\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .md\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .md\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .md\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .md\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .md\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .md\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .md\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .md\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .md\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .md\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .md\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .md\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .md\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .md\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .md\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .md\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .md\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .md\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .md\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .md\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .md\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .md\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .md\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .md\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .md\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .md\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .md\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .md\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .md\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .md\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .md\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .md\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .md\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .md\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .md\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .md\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .md\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .md\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .md\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .md\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .md\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .md\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .md\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .md\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .md\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .md\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .md\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .md\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .md\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .md\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .md\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .md\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .md\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .md\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .md\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .md\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .md\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .md\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .md\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .md\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .md\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .md\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .md\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .md\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .md\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .md\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .md\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .md\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .md\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .md\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .md\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .md\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .md\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .md\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .md\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .md\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .md\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .md\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .md\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .md\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .md\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .md\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .md\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .md\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .md\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .md\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .md\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .md\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .md\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .md\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .md\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .md\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .md\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .md\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .md\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .md\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .md\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .md\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .md\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .md\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .md\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .md\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .md\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .md\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .md\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .md\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .md\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .md\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .md\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .md\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .md\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .md\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .md\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .md\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .md\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .md\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .md\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .md\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .md\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .md\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .md\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .md\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .md\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .md\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .md\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .md\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .md\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .md\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .md\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .md\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .md\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .md\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .md\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .md\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .md\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .md\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .md\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .md\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .md\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .md\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .md\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .md\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .md\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .md\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .md\:container{
      max-width: 576px;
    }
  }

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

  @media (min-width: 992px){
    .md\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .md\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .md\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .md\:container{
      max-width: 1920px;
    }
  }
}

@media (min-width: 992px){
  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

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

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

  .lg\: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));
  }

  .lg\: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)));
  }

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

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

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

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

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

  .lg\:-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));
  }

  .lg\:-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)));
  }

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

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

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

  .lg\:-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));
  }

  .lg\:-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)));
  }

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

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

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

  .lg\: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));
  }

  .lg\: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)));
  }

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

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

  .lg\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .lg\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .lg\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

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

  .lg\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .lg\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .lg\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .lg\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .lg\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .lg\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .lg\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .lg\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--divide-opacity));
  }

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

  .lg\:divide-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .lg\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .lg\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .lg\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .lg\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .lg\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .lg\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .lg\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .lg\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .lg\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .lg\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .lg\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .lg\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .lg\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .lg\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .lg\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .lg\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .lg\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .lg\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .lg\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .lg\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .lg\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .lg\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .lg\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .lg\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--divide-opacity));
  }

  .lg\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .lg\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .lg\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .lg\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .lg\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .lg\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .lg\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .lg\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: 0.5;
  }

  .lg\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .lg\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .lg\: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;
  }

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

  .lg\: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;
  }

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

  .lg\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .lg\:bg-fixed{
    background-attachment: fixed;
  }

  .lg\:bg-local{
    background-attachment: local;
  }

  .lg\:bg-scroll{
    background-attachment: scroll;
  }

  .lg\:bg-clip-border{
    background-clip: border-box;
  }

  .lg\:bg-clip-padding{
    background-clip: padding-box;
  }

  .lg\:bg-clip-content{
    background-clip: content-box;
  }

  .lg\:bg-clip-text{
    background-clip: text;
  }

  .lg\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .lg\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:bg-transparent{
    background-color: transparent;
  }

  .lg\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .lg\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .lg\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .lg\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .lg\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .lg\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .lg\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .lg\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .lg\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .lg\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .lg\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .lg\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .lg\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .lg\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .lg\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .lg\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .lg\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .lg\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .lg\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .lg\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .lg\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .lg\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .lg\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .lg\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .lg\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .lg\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .lg\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .lg\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .lg\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .lg\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .lg\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .lg\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .lg\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .lg\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .lg\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .lg\:hover\:bg-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .lg\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .lg\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .lg\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .lg\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .lg\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .lg\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .lg\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .lg\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .lg\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .lg\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .lg\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .lg\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .lg\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .lg\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .lg\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .lg\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .lg\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .lg\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .lg\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .lg\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .lg\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .lg\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .lg\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .lg\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .lg\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .lg\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .lg\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .lg\:bg-none{
    background-image: none;
  }

  .lg\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .lg\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .lg\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .lg\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .lg\:from-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .lg\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .lg\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .lg\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .lg\:from-white{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .lg\:from-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .lg\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .lg\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .lg\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .lg\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .lg\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .lg\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .lg\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .lg\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .lg\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .lg\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .lg\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .lg\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .lg\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .lg\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .lg\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .lg\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .lg\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .lg\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .lg\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .lg\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .lg\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .lg\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .lg\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .lg\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .lg\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .lg\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\: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));
  }

  .lg\:via-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .lg\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .lg\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .lg\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .lg\: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));
  }

  .lg\:via-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .lg\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .lg\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .lg\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .lg\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .lg\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .lg\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .lg\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .lg\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .lg\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .lg\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .lg\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .lg\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .lg\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .lg\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .lg\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .lg\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .lg\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .lg\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .lg\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .lg\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .lg\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .lg\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .lg\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .lg\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .lg\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .lg\:to-form{
    --gradient-to-color: #79828B;
  }

  .lg\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .lg\:to-transparent{
    --gradient-to-color: transparent;
  }

  .lg\:to-black{
    --gradient-to-color: #212529;
  }

  .lg\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .lg\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .lg\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .lg\:to-grey{
    --gradient-to-color: #79828B;
  }

  .lg\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .lg\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .lg\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .lg\:to-white{
    --gradient-to-color: #ffffff;
  }

  .lg\:to-red{
    --gradient-to-color: #D31A08;
  }

  .lg\:to-green{
    --gradient-to-color: #66BB08;
  }

  .lg\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .lg\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .lg\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .lg\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .lg\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .lg\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .lg\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .lg\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .lg\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .lg\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .lg\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .lg\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .lg\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .lg\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .lg\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .lg\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .lg\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .lg\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .lg\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .lg\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .lg\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .lg\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .lg\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .lg\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .lg\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .lg\:hover\:from-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .lg\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .lg\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .lg\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .lg\:hover\:from-white:hover{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .lg\:hover\:from-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .lg\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .lg\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .lg\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .lg\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .lg\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .lg\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .lg\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .lg\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .lg\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .lg\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .lg\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .lg\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .lg\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .lg\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .lg\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .lg\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .lg\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .lg\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .lg\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .lg\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .lg\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .lg\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .lg\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .lg\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .lg\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .lg\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\: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));
  }

  .lg\:hover\:via-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .lg\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .lg\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .lg\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .lg\: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));
  }

  .lg\:hover\:via-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .lg\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .lg\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .lg\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .lg\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .lg\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .lg\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .lg\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .lg\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .lg\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .lg\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .lg\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .lg\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .lg\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .lg\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .lg\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .lg\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .lg\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .lg\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .lg\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .lg\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .lg\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .lg\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .lg\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .lg\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .lg\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .lg\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .lg\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .lg\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .lg\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .lg\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .lg\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .lg\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .lg\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .lg\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .lg\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .lg\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .lg\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .lg\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .lg\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .lg\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .lg\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .lg\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .lg\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .lg\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .lg\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .lg\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .lg\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .lg\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .lg\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .lg\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .lg\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .lg\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .lg\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .lg\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .lg\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .lg\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .lg\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .lg\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .lg\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .lg\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .lg\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .lg\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .lg\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .lg\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .lg\:focus\:from-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .lg\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .lg\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .lg\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .lg\:focus\:from-white:focus{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .lg\:focus\:from-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .lg\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .lg\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .lg\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .lg\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .lg\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .lg\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .lg\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .lg\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .lg\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .lg\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .lg\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .lg\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .lg\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .lg\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .lg\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .lg\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .lg\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .lg\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .lg\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .lg\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .lg\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .lg\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .lg\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .lg\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .lg\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .lg\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\: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));
  }

  .lg\:focus\:via-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .lg\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .lg\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .lg\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .lg\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .lg\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .lg\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .lg\: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));
  }

  .lg\:focus\:via-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .lg\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .lg\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .lg\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .lg\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .lg\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .lg\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .lg\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .lg\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .lg\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .lg\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .lg\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .lg\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .lg\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .lg\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .lg\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .lg\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .lg\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .lg\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .lg\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .lg\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .lg\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .lg\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .lg\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .lg\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .lg\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .lg\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .lg\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .lg\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .lg\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .lg\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .lg\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .lg\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .lg\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .lg\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .lg\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .lg\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .lg\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .lg\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .lg\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .lg\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .lg\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .lg\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .lg\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .lg\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .lg\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .lg\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .lg\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .lg\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .lg\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .lg\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .lg\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .lg\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .lg\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .lg\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .lg\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .lg\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .lg\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .lg\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .lg\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .lg\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .lg\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .lg\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .lg\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .lg\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .lg\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .lg\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .lg\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .lg\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .lg\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .lg\:hover\:bg-opacity-50:hover{
    --bg-opacity: 0.5;
  }

  .lg\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .lg\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .lg\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .lg\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .lg\:focus\:bg-opacity-50:focus{
    --bg-opacity: 0.5;
  }

  .lg\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .lg\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .lg\:bg-bottom{
    background-position: bottom;
  }

  .lg\:bg-center{
    background-position: center;
  }

  .lg\:bg-left{
    background-position: left;
  }

  .lg\:bg-left-bottom{
    background-position: left bottom;
  }

  .lg\:bg-left-top{
    background-position: left top;
  }

  .lg\:bg-right{
    background-position: right;
  }

  .lg\:bg-right-bottom{
    background-position: right bottom;
  }

  .lg\:bg-right-top{
    background-position: right top;
  }

  .lg\:bg-top{
    background-position: top;
  }

  .lg\:bg-repeat{
    background-repeat: repeat;
  }

  .lg\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .lg\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .lg\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .lg\:bg-repeat-round{
    background-repeat: round;
  }

  .lg\:bg-repeat-space{
    background-repeat: space;
  }

  .lg\:bg-auto{
    background-size: auto;
  }

  .lg\:bg-cover{
    background-size: cover;
  }

  .lg\:bg-contain{
    background-size: contain;
  }

  .lg\:border-collapse{
    border-collapse: collapse;
  }

  .lg\:border-separate{
    border-collapse: separate;
  }

  .lg\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .lg\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:border-transparent{
    border-color: transparent;
  }

  .lg\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .lg\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .lg\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .lg\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .lg\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .lg\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .lg\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .lg\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .lg\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .lg\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .lg\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .lg\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .lg\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .lg\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .lg\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .lg\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .lg\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .lg\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .lg\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .lg\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .lg\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .lg\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .lg\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .lg\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .lg\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .lg\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .lg\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .lg\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .lg\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .lg\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .lg\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .lg\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .lg\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .lg\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .lg\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .lg\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .lg\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .lg\:hover\:border-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .lg\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .lg\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .lg\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .lg\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .lg\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .lg\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .lg\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .lg\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .lg\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .lg\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .lg\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .lg\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .lg\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .lg\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .lg\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .lg\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .lg\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .lg\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .lg\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .lg\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .lg\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .lg\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .lg\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .lg\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .lg\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .lg\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .lg\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .lg\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .lg\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .lg\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .lg\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .lg\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .lg\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .lg\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .lg\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .lg\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .lg\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .lg\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .lg\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .lg\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .lg\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .lg\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .lg\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .lg\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .lg\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .lg\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .lg\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .lg\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .lg\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .lg\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .lg\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .lg\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .lg\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .lg\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .lg\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .lg\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .lg\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .lg\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .lg\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .lg\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .lg\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .lg\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .lg\:border-opacity-0{
    --border-opacity: 0;
  }

  .lg\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .lg\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .lg\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .lg\:border-opacity-100{
    --border-opacity: 1;
  }

  .lg\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .lg\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .lg\:hover\:border-opacity-50:hover{
    --border-opacity: 0.5;
  }

  .lg\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .lg\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .lg\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .lg\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .lg\:focus\:border-opacity-50:focus{
    --border-opacity: 0.5;
  }

  .lg\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .lg\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .lg\:rounded-none{
    border-radius: 0;
  }

  .lg\:rounded-xs{
    border-radius: 0.061rem;
  }

  .lg\:rounded-sm{
    border-radius: 0.125rem;
  }

  .lg\:rounded{
    border-radius: 0.25rem;
  }

  .lg\:rounded-lg{
    border-radius: 0.5rem;
  }

  .lg\:rounded-full{
    border-radius: 9999px;
  }

  .lg\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .lg\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-t-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .lg\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .lg\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .lg\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .lg\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .lg\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .lg\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .lg\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .lg\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .lg\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .lg\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .lg\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .lg\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .lg\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .lg\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .lg\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .lg\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-tl-xs{
    border-top-left-radius: 0.061rem;
  }

  .lg\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .lg\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .lg\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .lg\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .lg\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .lg\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .lg\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .lg\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .lg\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .lg\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .lg\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .lg\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .lg\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .lg\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .lg\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .lg\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .lg\:border-solid{
    border-style: solid;
  }

  .lg\:border-dashed{
    border-style: dashed;
  }

  .lg\:border-dotted{
    border-style: dotted;
  }

  .lg\:border-double{
    border-style: double;
  }

  .lg\:border-none{
    border-style: none;
  }

  .lg\:border-0{
    border-width: 0;
  }

  .lg\:border-2{
    border-width: 2px;
  }

  .lg\:border-4{
    border-width: 4px;
  }

  .lg\:border-8{
    border-width: 8px;
  }

  .lg\:border{
    border-width: 1px;
  }

  .lg\:border-t-0{
    border-top-width: 0;
  }

  .lg\:border-r-0{
    border-right-width: 0;
  }

  .lg\:border-b-0{
    border-bottom-width: 0;
  }

  .lg\:border-l-0{
    border-left-width: 0;
  }

  .lg\:border-t-2{
    border-top-width: 2px;
  }

  .lg\:border-r-2{
    border-right-width: 2px;
  }

  .lg\:border-b-2{
    border-bottom-width: 2px;
  }

  .lg\:border-l-2{
    border-left-width: 2px;
  }

  .lg\:border-t-4{
    border-top-width: 4px;
  }

  .lg\:border-r-4{
    border-right-width: 4px;
  }

  .lg\:border-b-4{
    border-bottom-width: 4px;
  }

  .lg\:border-l-4{
    border-left-width: 4px;
  }

  .lg\:border-t-8{
    border-top-width: 8px;
  }

  .lg\:border-r-8{
    border-right-width: 8px;
  }

  .lg\:border-b-8{
    border-bottom-width: 8px;
  }

  .lg\:border-l-8{
    border-left-width: 8px;
  }

  .lg\:border-t{
    border-top-width: 1px;
  }

  .lg\:border-r{
    border-right-width: 1px;
  }

  .lg\:border-b{
    border-bottom-width: 1px;
  }

  .lg\:border-l{
    border-left-width: 1px;
  }

  .lg\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .lg\:box-content{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .lg\:cursor-auto{
    cursor: auto;
  }

  .lg\:cursor-default{
    cursor: default;
  }

  .lg\:cursor-pointer{
    cursor: pointer;
  }

  .lg\:cursor-wait{
    cursor: wait;
  }

  .lg\:cursor-text{
    cursor: text;
  }

  .lg\:cursor-move{
    cursor: move;
  }

  .lg\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .lg\:block{
    display: block;
  }

  .lg\:inline-block{
    display: inline-block;
  }

  .lg\:inline{
    display: inline;
  }

  .lg\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .lg\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .lg\:table{
    display: table;
  }

  .lg\:table-caption{
    display: table-caption;
  }

  .lg\:table-cell{
    display: table-cell;
  }

  .lg\:table-column{
    display: table-column;
  }

  .lg\:table-column-group{
    display: table-column-group;
  }

  .lg\:table-footer-group{
    display: table-footer-group;
  }

  .lg\:table-header-group{
    display: table-header-group;
  }

  .lg\:table-row-group{
    display: table-row-group;
  }

  .lg\:table-row{
    display: table-row;
  }

  .lg\:flow-root{
    display: flow-root;
  }

  .lg\:grid{
    display: grid;
  }

  .lg\:inline-grid{
    display: inline-grid;
  }

  .lg\:contents{
    display: contents;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .lg\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .lg\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .lg\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .lg\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .lg\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .lg\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .lg\:place-items-auto{
    place-items: auto;
  }

  .lg\:place-items-start{
    place-items: start;
  }

  .lg\:place-items-end{
    place-items: end;
  }

  .lg\:place-items-center{
    place-items: center;
  }

  .lg\:place-items-stretch{
    place-items: stretch;
  }

  .lg\:place-content-center{
    place-content: center;
  }

  .lg\:place-content-start{
    place-content: start;
  }

  .lg\:place-content-end{
    place-content: end;
  }

  .lg\:place-content-between{
    place-content: space-between;
  }

  .lg\:place-content-around{
    place-content: space-around;
  }

  .lg\:place-content-evenly{
    place-content: space-evenly;
  }

  .lg\:place-content-stretch{
    place-content: stretch;
  }

  .lg\:place-self-auto{
    place-self: auto;
  }

  .lg\:place-self-start{
    place-self: start;
  }

  .lg\:place-self-end{
    place-self: end;
  }

  .lg\:place-self-center{
    place-self: center;
  }

  .lg\:place-self-stretch{
    place-self: stretch;
  }

  .lg\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .lg\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .lg\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .lg\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .lg\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .lg\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .lg\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .lg\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .lg\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .lg\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .lg\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .lg\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .lg\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .lg\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .lg\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .lg\:self-stretch{
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .lg\:justify-items-auto{
    justify-items: auto;
  }

  .lg\:justify-items-start{
    justify-items: start;
  }

  .lg\:justify-items-end{
    justify-items: end;
  }

  .lg\:justify-items-center{
    justify-items: center;
  }

  .lg\:justify-items-stretch{
    justify-items: stretch;
  }

  .lg\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .lg\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .lg\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .lg\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .lg\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .lg\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .lg\:justify-self-auto{
    justify-self: auto;
  }

  .lg\:justify-self-start{
    justify-self: start;
  }

  .lg\:justify-self-end{
    justify-self: end;
  }

  .lg\:justify-self-center{
    justify-self: center;
  }

  .lg\:justify-self-stretch{
    justify-self: stretch;
  }

  .lg\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .lg\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .lg\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .lg\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .lg\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .lg\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .lg\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .lg\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .lg\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .lg\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .lg\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .lg\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .lg\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .lg\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .lg\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .lg\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .lg\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .lg\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .lg\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .lg\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .lg\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .lg\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .lg\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .lg\:float-right{
    float: right;
  }

  .lg\:float-left{
    float: left;
  }

  .lg\:float-none{
    float: none;
  }

  .lg\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .lg\:clear-left{
    clear: left;
  }

  .lg\:clear-right{
    clear: right;
  }

  .lg\:clear-both{
    clear: both;
  }

  .lg\:clear-none{
    clear: none;
  }

  .lg\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .lg\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .lg\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .lg\:font-hairline{
    font-weight: 100;
  }

  .lg\:font-thin{
    font-weight: 200;
  }

  .lg\:font-light{
    font-weight: 300;
  }

  .lg\:font-normal{
    font-weight: 400;
  }

  .lg\:font-medium{
    font-weight: 500;
  }

  .lg\:font-semibold{
    font-weight: 600;
  }

  .lg\:font-bold{
    font-weight: 700;
  }

  .lg\:font-extrabold{
    font-weight: 800;
  }

  .lg\:font-black{
    font-weight: 900;
  }

  .lg\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .lg\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .lg\:hover\:font-light:hover{
    font-weight: 300;
  }

  .lg\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .lg\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .lg\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .lg\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .lg\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .lg\:hover\:font-black:hover{
    font-weight: 900;
  }

  .lg\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .lg\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .lg\:focus\:font-light:focus{
    font-weight: 300;
  }

  .lg\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .lg\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .lg\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .lg\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .lg\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .lg\:focus\:font-black:focus{
    font-weight: 900;
  }

  .lg\:h-0{
    height: 0;
  }

  .lg\:h-1{
    height: 0.25rem;
  }

  .lg\:h-2{
    height: 0.5rem;
  }

  .lg\:h-3{
    height: 0.75rem;
  }

  .lg\:h-4{
    height: 1rem;
  }

  .lg\:h-5{
    height: 1.25rem;
  }

  .lg\:h-6{
    height: 1.5rem;
  }

  .lg\:h-8{
    height: 2rem;
  }

  .lg\:h-10{
    height: 2.5rem;
  }

  .lg\:h-12{
    height: 3rem;
  }

  .lg\:h-14{
    height: 3.5rem;
  }

  .lg\:h-16{
    height: 4rem;
  }

  .lg\:h-20{
    height: 5rem;
  }

  .lg\:h-21{
    height: 5.25rem;
  }

  .lg\:h-24{
    height: 6rem;
  }

  .lg\:h-32{
    height: 8rem;
  }

  .lg\:h-36{
    height: 9rem;
  }

  .lg\:h-40{
    height: 10rem;
  }

  .lg\:h-44{
    height: 11rem;
  }

  .lg\:h-48{
    height: 12rem;
  }

  .lg\:h-56{
    height: 14rem;
  }

  .lg\:h-64{
    height: 16rem;
  }

  .lg\:h-544{
    height: 34rem;
  }

  .lg\:h-auto{
    height: auto;
  }

  .lg\:h-px{
    height: 1px;
  }

  .lg\:h-full{
    height: 100%;
  }

  .lg\:h-screen{
    height: 100vh;
  }

  .lg\:text-0{
    font-size: 0;
  }

  .lg\:text-xxs{
    font-size: .75rem;
  }

  .lg\:text-xs{
    font-size: .8125rem;
  }

  .lg\:text-sm{
    font-size: .875rem;
  }

  .lg\:text-base{
    font-size: .9375rem;
  }

  .lg\:text-lg{
    font-size: 1rem;
  }

  .lg\:text-2lg{
    font-size: 1.125rem;
  }

  .lg\:text-xl{
    font-size: 1.25rem;
  }

  .lg\:text-2xl{
    font-size: 1.5rem;
  }

  .lg\:text-3xl{
    font-size: 2rem;
  }

  .lg\:text-4xl{
    font-size: 2.25rem;
  }

  .lg\:text-5xl{
    font-size: 3rem;
  }

  .lg\:leading-none{
    line-height: 1;
  }

  .lg\:leading-tight{
    line-height: 1.25;
  }

  .lg\:leading-snug{
    line-height: 1.375;
  }

  .lg\:leading-normal{
    line-height: 1.5;
  }

  .lg\:leading-relaxed{
    line-height: 1.625;
  }

  .lg\:leading-loose{
    line-height: 2;
  }

  .lg\:list-inside{
    list-style-position: inside;
  }

  .lg\:list-outside{
    list-style-position: outside;
  }

  .lg\:list-none{
    list-style-type: none;
  }

  .lg\:list-disc{
    list-style-type: disc;
  }

  .lg\:list-decimal{
    list-style-type: decimal;
  }

  .lg\:m-0{
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:m-auto{
    margin: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .lg\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:mt-0{
    margin-top: 0;
  }

  .lg\:mr-0{
    margin-right: 0;
  }

  .lg\:mb-0{
    margin-bottom: 0;
  }

  .lg\:ml-0{
    margin-left: 0;
  }

  .lg\:mt-1{
    margin-top: 0.25rem;
  }

  .lg\:mr-1{
    margin-right: 0.25rem;
  }

  .lg\:mb-1{
    margin-bottom: 0.25rem;
  }

  .lg\:ml-1{
    margin-left: 0.25rem;
  }

  .lg\:mt-2{
    margin-top: 0.5rem;
  }

  .lg\:mr-2{
    margin-right: 0.5rem;
  }

  .lg\:mb-2{
    margin-bottom: 0.5rem;
  }

  .lg\:ml-2{
    margin-left: 0.5rem;
  }

  .lg\:mt-3{
    margin-top: 0.75rem;
  }

  .lg\:mr-3{
    margin-right: 0.75rem;
  }

  .lg\:mb-3{
    margin-bottom: 0.75rem;
  }

  .lg\:ml-3{
    margin-left: 0.75rem;
  }

  .lg\:mt-4{
    margin-top: 1rem;
  }

  .lg\:mr-4{
    margin-right: 1rem;
  }

  .lg\:mb-4{
    margin-bottom: 1rem;
  }

  .lg\:ml-4{
    margin-left: 1rem;
  }

  .lg\:mt-5{
    margin-top: 1.25rem;
  }

  .lg\:mr-5{
    margin-right: 1.25rem;
  }

  .lg\:mb-5{
    margin-bottom: 1.25rem;
  }

  .lg\:ml-5{
    margin-left: 1.25rem;
  }

  .lg\:mt-6{
    margin-top: 1.5rem;
  }

  .lg\:mr-6{
    margin-right: 1.5rem;
  }

  .lg\:mb-6{
    margin-bottom: 1.5rem;
  }

  .lg\:ml-6{
    margin-left: 1.5rem;
  }

  .lg\:mt-8{
    margin-top: 2rem;
  }

  .lg\:mr-8{
    margin-right: 2rem;
  }

  .lg\:mb-8{
    margin-bottom: 2rem;
  }

  .lg\:ml-8{
    margin-left: 2rem;
  }

  .lg\:mt-10{
    margin-top: 2.5rem;
  }

  .lg\:mr-10{
    margin-right: 2.5rem;
  }

  .lg\:mb-10{
    margin-bottom: 2.5rem;
  }

  .lg\:ml-10{
    margin-left: 2.5rem;
  }

  .lg\:mt-12{
    margin-top: 3rem;
  }

  .lg\:mr-12{
    margin-right: 3rem;
  }

  .lg\:mb-12{
    margin-bottom: 3rem;
  }

  .lg\:ml-12{
    margin-left: 3rem;
  }

  .lg\:mt-14{
    margin-top: 3.5rem;
  }

  .lg\:mr-14{
    margin-right: 3.5rem;
  }

  .lg\:mb-14{
    margin-bottom: 3.5rem;
  }

  .lg\:ml-14{
    margin-left: 3.5rem;
  }

  .lg\:mt-16{
    margin-top: 4rem;
  }

  .lg\:mr-16{
    margin-right: 4rem;
  }

  .lg\:mb-16{
    margin-bottom: 4rem;
  }

  .lg\:ml-16{
    margin-left: 4rem;
  }

  .lg\:mt-20{
    margin-top: 5rem;
  }

  .lg\:mr-20{
    margin-right: 5rem;
  }

  .lg\:mb-20{
    margin-bottom: 5rem;
  }

  .lg\:ml-20{
    margin-left: 5rem;
  }

  .lg\:mt-24{
    margin-top: 6rem;
  }

  .lg\:mr-24{
    margin-right: 6rem;
  }

  .lg\:mb-24{
    margin-bottom: 6rem;
  }

  .lg\:ml-24{
    margin-left: 6rem;
  }

  .lg\:mt-32{
    margin-top: 8rem;
  }

  .lg\:mr-32{
    margin-right: 8rem;
  }

  .lg\:mb-32{
    margin-bottom: 8rem;
  }

  .lg\:ml-32{
    margin-left: 8rem;
  }

  .lg\:mt-36{
    margin-top: 9rem;
  }

  .lg\:mr-36{
    margin-right: 9rem;
  }

  .lg\:mb-36{
    margin-bottom: 9rem;
  }

  .lg\:ml-36{
    margin-left: 9rem;
  }

  .lg\:mt-40{
    margin-top: 10rem;
  }

  .lg\:mr-40{
    margin-right: 10rem;
  }

  .lg\:mb-40{
    margin-bottom: 10rem;
  }

  .lg\:ml-40{
    margin-left: 10rem;
  }

  .lg\:mt-44{
    margin-top: 11rem;
  }

  .lg\:mr-44{
    margin-right: 11rem;
  }

  .lg\:mb-44{
    margin-bottom: 11rem;
  }

  .lg\:ml-44{
    margin-left: 11rem;
  }

  .lg\:mt-48{
    margin-top: 12rem;
  }

  .lg\:mr-48{
    margin-right: 12rem;
  }

  .lg\:mb-48{
    margin-bottom: 12rem;
  }

  .lg\:ml-48{
    margin-left: 12rem;
  }

  .lg\:mt-56{
    margin-top: 14rem;
  }

  .lg\:mr-56{
    margin-right: 14rem;
  }

  .lg\:mb-56{
    margin-bottom: 14rem;
  }

  .lg\:ml-56{
    margin-left: 14rem;
  }

  .lg\:mt-64{
    margin-top: 16rem;
  }

  .lg\:mr-64{
    margin-right: 16rem;
  }

  .lg\:mb-64{
    margin-bottom: 16rem;
  }

  .lg\:ml-64{
    margin-left: 16rem;
  }

  .lg\:mt-auto{
    margin-top: auto;
  }

  .lg\:mr-auto{
    margin-right: auto;
  }

  .lg\:mb-auto{
    margin-bottom: auto;
  }

  .lg\:ml-auto{
    margin-left: auto;
  }

  .lg\:mt-px{
    margin-top: 1px;
  }

  .lg\:mr-px{
    margin-right: 1px;
  }

  .lg\:mb-px{
    margin-bottom: 1px;
  }

  .lg\:ml-px{
    margin-left: 1px;
  }

  .lg\:-mt-1{
    margin-top: -0.25rem;
  }

  .lg\:-mr-1{
    margin-right: -0.25rem;
  }

  .lg\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .lg\:-ml-1{
    margin-left: -0.25rem;
  }

  .lg\:-mt-2{
    margin-top: -0.5rem;
  }

  .lg\:-mr-2{
    margin-right: -0.5rem;
  }

  .lg\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .lg\:-ml-2{
    margin-left: -0.5rem;
  }

  .lg\:-mt-3{
    margin-top: -0.75rem;
  }

  .lg\:-mr-3{
    margin-right: -0.75rem;
  }

  .lg\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .lg\:-ml-3{
    margin-left: -0.75rem;
  }

  .lg\:-mt-4{
    margin-top: -1rem;
  }

  .lg\:-mr-4{
    margin-right: -1rem;
  }

  .lg\:-mb-4{
    margin-bottom: -1rem;
  }

  .lg\:-ml-4{
    margin-left: -1rem;
  }

  .lg\:-mt-5{
    margin-top: -1.25rem;
  }

  .lg\:-mr-5{
    margin-right: -1.25rem;
  }

  .lg\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .lg\:-ml-5{
    margin-left: -1.25rem;
  }

  .lg\:-mt-6{
    margin-top: -1.5rem;
  }

  .lg\:-mr-6{
    margin-right: -1.5rem;
  }

  .lg\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .lg\:-ml-6{
    margin-left: -1.5rem;
  }

  .lg\:-mt-8{
    margin-top: -2rem;
  }

  .lg\:-mr-8{
    margin-right: -2rem;
  }

  .lg\:-mb-8{
    margin-bottom: -2rem;
  }

  .lg\:-ml-8{
    margin-left: -2rem;
  }

  .lg\:-mt-10{
    margin-top: -2.5rem;
  }

  .lg\:-mr-10{
    margin-right: -2.5rem;
  }

  .lg\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .lg\:-ml-10{
    margin-left: -2.5rem;
  }

  .lg\:-mt-12{
    margin-top: -3rem;
  }

  .lg\:-mr-12{
    margin-right: -3rem;
  }

  .lg\:-mb-12{
    margin-bottom: -3rem;
  }

  .lg\:-ml-12{
    margin-left: -3rem;
  }

  .lg\:-mt-14{
    margin-top: -3.5rem;
  }

  .lg\:-mr-14{
    margin-right: -3.5rem;
  }

  .lg\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .lg\:-ml-14{
    margin-left: -3.5rem;
  }

  .lg\:-mt-16{
    margin-top: -4rem;
  }

  .lg\:-mr-16{
    margin-right: -4rem;
  }

  .lg\:-mb-16{
    margin-bottom: -4rem;
  }

  .lg\:-ml-16{
    margin-left: -4rem;
  }

  .lg\:-mt-20{
    margin-top: -5rem;
  }

  .lg\:-mr-20{
    margin-right: -5rem;
  }

  .lg\:-mb-20{
    margin-bottom: -5rem;
  }

  .lg\:-ml-20{
    margin-left: -5rem;
  }

  .lg\:-mt-24{
    margin-top: -6rem;
  }

  .lg\:-mr-24{
    margin-right: -6rem;
  }

  .lg\:-mb-24{
    margin-bottom: -6rem;
  }

  .lg\:-ml-24{
    margin-left: -6rem;
  }

  .lg\:-mt-32{
    margin-top: -8rem;
  }

  .lg\:-mr-32{
    margin-right: -8rem;
  }

  .lg\:-mb-32{
    margin-bottom: -8rem;
  }

  .lg\:-ml-32{
    margin-left: -8rem;
  }

  .lg\:-mt-36{
    margin-top: -9rem;
  }

  .lg\:-mr-36{
    margin-right: -9rem;
  }

  .lg\:-mb-36{
    margin-bottom: -9rem;
  }

  .lg\:-ml-36{
    margin-left: -9rem;
  }

  .lg\:-mt-40{
    margin-top: -10rem;
  }

  .lg\:-mr-40{
    margin-right: -10rem;
  }

  .lg\:-mb-40{
    margin-bottom: -10rem;
  }

  .lg\:-ml-40{
    margin-left: -10rem;
  }

  .lg\:-mt-44{
    margin-top: -11rem;
  }

  .lg\:-mr-44{
    margin-right: -11rem;
  }

  .lg\:-mb-44{
    margin-bottom: -11rem;
  }

  .lg\:-ml-44{
    margin-left: -11rem;
  }

  .lg\:-mt-48{
    margin-top: -12rem;
  }

  .lg\:-mr-48{
    margin-right: -12rem;
  }

  .lg\:-mb-48{
    margin-bottom: -12rem;
  }

  .lg\:-ml-48{
    margin-left: -12rem;
  }

  .lg\:-mt-56{
    margin-top: -14rem;
  }

  .lg\:-mr-56{
    margin-right: -14rem;
  }

  .lg\:-mb-56{
    margin-bottom: -14rem;
  }

  .lg\:-ml-56{
    margin-left: -14rem;
  }

  .lg\:-mt-64{
    margin-top: -16rem;
  }

  .lg\:-mr-64{
    margin-right: -16rem;
  }

  .lg\:-mb-64{
    margin-bottom: -16rem;
  }

  .lg\:-ml-64{
    margin-left: -16rem;
  }

  .lg\:-mt-px{
    margin-top: -1px;
  }

  .lg\:-mr-px{
    margin-right: -1px;
  }

  .lg\:-mb-px{
    margin-bottom: -1px;
  }

  .lg\:-ml-px{
    margin-left: -1px;
  }

  .lg\:max-h-full{
    max-height: 100%;
  }

  .lg\:max-h-screen{
    max-height: 100vh;
  }

  .lg\:max-w-none{
    max-width: none;
  }

  .lg\:max-w-xs{
    max-width: 20rem;
  }

  .lg\:max-w-sm{
    max-width: 24rem;
  }

  .lg\:max-w-md{
    max-width: 28rem;
  }

  .lg\:max-w-lg{
    max-width: 32rem;
  }

  .lg\:max-w-xl{
    max-width: 36rem;
  }

  .lg\:max-w-2xl{
    max-width: 42rem;
  }

  .lg\:max-w-3xl{
    max-width: 48rem;
  }

  .lg\:max-w-4xl{
    max-width: 56rem;
  }

  .lg\:max-w-5xl{
    max-width: 64rem;
  }

  .lg\:max-w-6xl{
    max-width: 72rem;
  }

  .lg\:max-w-full{
    max-width: 100%;
  }

  .lg\:max-w-screen-xs{
    max-width: 420px;
  }

  .lg\:max-w-screen-sm{
    max-width: 576px;
  }

  .lg\:max-w-screen-md{
    max-width: 768px;
  }

  .lg\:max-w-screen-lg{
    max-width: 992px;
  }

  .lg\:max-w-screen-xl{
    max-width: 1200px;
  }

  .lg\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .lg\:max-w-screen-hd{
    max-width: 1920px;
  }

  .lg\:min-h-0{
    min-height: 0;
  }

  .lg\:min-h-full{
    min-height: 100%;
  }

  .lg\:min-h-screen{
    min-height: 100vh;
  }

  .lg\:min-w-0{
    min-width: 0;
  }

  .lg\:min-w-1{
    min-width: 0.25rem;
  }

  .lg\:min-w-2{
    min-width: 0.5rem;
  }

  .lg\:min-w-3{
    min-width: 0.75rem;
  }

  .lg\:min-w-4{
    min-width: 1rem;
  }

  .lg\:min-w-5{
    min-width: 1.25rem;
  }

  .lg\:min-w-6{
    min-width: 1.5rem;
  }

  .lg\:min-w-8{
    min-width: 2rem;
  }

  .lg\:min-w-10{
    min-width: 2.5rem;
  }

  .lg\:min-w-12{
    min-width: 3rem;
  }

  .lg\:min-w-14{
    min-width: 3.5rem;
  }

  .lg\:min-w-16{
    min-width: 4rem;
  }

  .lg\:min-w-20{
    min-width: 5rem;
  }

  .lg\:min-w-24{
    min-width: 6rem;
  }

  .lg\:min-w-32{
    min-width: 8rem;
  }

  .lg\:min-w-36{
    min-width: 9rem;
  }

  .lg\:min-w-40{
    min-width: 10rem;
  }

  .lg\:min-w-44{
    min-width: 11rem;
  }

  .lg\:min-w-48{
    min-width: 12rem;
  }

  .lg\:min-w-56{
    min-width: 14rem;
  }

  .lg\:min-w-64{
    min-width: 16rem;
  }

  .lg\:min-w-px{
    min-width: 1px;
  }

  .lg\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .lg\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .lg\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .lg\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .lg\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .lg\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .lg\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .lg\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .lg\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .lg\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .lg\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .lg\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .lg\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .lg\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .lg\:opacity-0{
    opacity: 0;
  }

  .lg\:opacity-25{
    opacity: 0.25;
  }

  .lg\:opacity-50{
    opacity: 0.5;
  }

  .lg\:opacity-75{
    opacity: 0.75;
  }

  .lg\:opacity-100{
    opacity: 1;
  }

  .lg\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .lg\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .lg\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .lg\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .lg\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .lg\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .lg\:overflow-auto{
    overflow: auto;
  }

  .lg\:overflow-hidden{
    overflow: hidden;
  }

  .lg\:overflow-visible{
    overflow: visible;
  }

  .lg\:overflow-scroll{
    overflow: scroll;
  }

  .lg\:overflow-x-auto{
    overflow-x: auto;
  }

  .lg\:overflow-y-auto{
    overflow-y: auto;
  }

  .lg\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .lg\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .lg\:overflow-x-visible{
    overflow-x: visible;
  }

  .lg\:overflow-y-visible{
    overflow-y: visible;
  }

  .lg\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .lg\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .lg\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .lg\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .lg\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .lg\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .lg\:overscroll-none{
    overscroll-behavior: none;
  }

  .lg\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .lg\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .lg\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .lg\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .lg\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .lg\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .lg\:p-0{
    padding: 0;
  }

  .lg\:p-1{
    padding: 0.25rem;
  }

  .lg\:p-2{
    padding: 0.5rem;
  }

  .lg\:p-3{
    padding: 0.75rem;
  }

  .lg\:p-4{
    padding: 1rem;
  }

  .lg\:p-5{
    padding: 1.25rem;
  }

  .lg\:p-6{
    padding: 1.5rem;
  }

  .lg\:p-8{
    padding: 2rem;
  }

  .lg\:p-10{
    padding: 2.5rem;
  }

  .lg\:p-12{
    padding: 3rem;
  }

  .lg\:p-14{
    padding: 3.5rem;
  }

  .lg\:p-16{
    padding: 4rem;
  }

  .lg\:p-20{
    padding: 5rem;
  }

  .lg\:p-21{
    padding: 5.25rem;
  }

  .lg\:p-24{
    padding: 6rem;
  }

  .lg\:p-32{
    padding: 8rem;
  }

  .lg\:p-36{
    padding: 9rem;
  }

  .lg\:p-40{
    padding: 10rem;
  }

  .lg\:p-44{
    padding: 11rem;
  }

  .lg\:p-48{
    padding: 12rem;
  }

  .lg\:p-56{
    padding: 14rem;
  }

  .lg\:p-64{
    padding: 16rem;
  }

  .lg\:p-px{
    padding: 1px;
  }

  .lg\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .lg\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .lg\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .lg\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lg\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .lg\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lg\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .lg\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .lg\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .lg\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .lg\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .lg\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .lg\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .lg\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .lg\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .lg\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .lg\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .lg\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .lg\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .lg\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .lg\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .lg\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .lg\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .lg\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .lg\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .lg\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .lg\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .lg\:pt-0{
    padding-top: 0;
  }

  .lg\:pr-0{
    padding-right: 0;
  }

  .lg\:pb-0{
    padding-bottom: 0;
  }

  .lg\:pl-0{
    padding-left: 0;
  }

  .lg\:pt-1{
    padding-top: 0.25rem;
  }

  .lg\:pr-1{
    padding-right: 0.25rem;
  }

  .lg\:pb-1{
    padding-bottom: 0.25rem;
  }

  .lg\:pl-1{
    padding-left: 0.25rem;
  }

  .lg\:pt-2{
    padding-top: 0.5rem;
  }

  .lg\:pr-2{
    padding-right: 0.5rem;
  }

  .lg\:pb-2{
    padding-bottom: 0.5rem;
  }

  .lg\:pl-2{
    padding-left: 0.5rem;
  }

  .lg\:pt-3{
    padding-top: 0.75rem;
  }

  .lg\:pr-3{
    padding-right: 0.75rem;
  }

  .lg\:pb-3{
    padding-bottom: 0.75rem;
  }

  .lg\:pl-3{
    padding-left: 0.75rem;
  }

  .lg\:pt-4{
    padding-top: 1rem;
  }

  .lg\:pr-4{
    padding-right: 1rem;
  }

  .lg\:pb-4{
    padding-bottom: 1rem;
  }

  .lg\:pl-4{
    padding-left: 1rem;
  }

  .lg\:pt-5{
    padding-top: 1.25rem;
  }

  .lg\:pr-5{
    padding-right: 1.25rem;
  }

  .lg\:pb-5{
    padding-bottom: 1.25rem;
  }

  .lg\:pl-5{
    padding-left: 1.25rem;
  }

  .lg\:pt-6{
    padding-top: 1.5rem;
  }

  .lg\:pr-6{
    padding-right: 1.5rem;
  }

  .lg\:pb-6{
    padding-bottom: 1.5rem;
  }

  .lg\:pl-6{
    padding-left: 1.5rem;
  }

  .lg\:pt-8{
    padding-top: 2rem;
  }

  .lg\:pr-8{
    padding-right: 2rem;
  }

  .lg\:pb-8{
    padding-bottom: 2rem;
  }

  .lg\:pl-8{
    padding-left: 2rem;
  }

  .lg\:pt-10{
    padding-top: 2.5rem;
  }

  .lg\:pr-10{
    padding-right: 2.5rem;
  }

  .lg\:pb-10{
    padding-bottom: 2.5rem;
  }

  .lg\:pl-10{
    padding-left: 2.5rem;
  }

  .lg\:pt-12{
    padding-top: 3rem;
  }

  .lg\:pr-12{
    padding-right: 3rem;
  }

  .lg\:pb-12{
    padding-bottom: 3rem;
  }

  .lg\:pl-12{
    padding-left: 3rem;
  }

  .lg\:pt-14{
    padding-top: 3.5rem;
  }

  .lg\:pr-14{
    padding-right: 3.5rem;
  }

  .lg\:pb-14{
    padding-bottom: 3.5rem;
  }

  .lg\:pl-14{
    padding-left: 3.5rem;
  }

  .lg\:pt-16{
    padding-top: 4rem;
  }

  .lg\:pr-16{
    padding-right: 4rem;
  }

  .lg\:pb-16{
    padding-bottom: 4rem;
  }

  .lg\:pl-16{
    padding-left: 4rem;
  }

  .lg\:pt-20{
    padding-top: 5rem;
  }

  .lg\:pr-20{
    padding-right: 5rem;
  }

  .lg\:pb-20{
    padding-bottom: 5rem;
  }

  .lg\:pl-20{
    padding-left: 5rem;
  }

  .lg\:pt-21{
    padding-top: 5.25rem;
  }

  .lg\:pr-21{
    padding-right: 5.25rem;
  }

  .lg\:pb-21{
    padding-bottom: 5.25rem;
  }

  .lg\:pl-21{
    padding-left: 5.25rem;
  }

  .lg\:pt-24{
    padding-top: 6rem;
  }

  .lg\:pr-24{
    padding-right: 6rem;
  }

  .lg\:pb-24{
    padding-bottom: 6rem;
  }

  .lg\:pl-24{
    padding-left: 6rem;
  }

  .lg\:pt-32{
    padding-top: 8rem;
  }

  .lg\:pr-32{
    padding-right: 8rem;
  }

  .lg\:pb-32{
    padding-bottom: 8rem;
  }

  .lg\:pl-32{
    padding-left: 8rem;
  }

  .lg\:pt-36{
    padding-top: 9rem;
  }

  .lg\:pr-36{
    padding-right: 9rem;
  }

  .lg\:pb-36{
    padding-bottom: 9rem;
  }

  .lg\:pl-36{
    padding-left: 9rem;
  }

  .lg\:pt-40{
    padding-top: 10rem;
  }

  .lg\:pr-40{
    padding-right: 10rem;
  }

  .lg\:pb-40{
    padding-bottom: 10rem;
  }

  .lg\:pl-40{
    padding-left: 10rem;
  }

  .lg\:pt-44{
    padding-top: 11rem;
  }

  .lg\:pr-44{
    padding-right: 11rem;
  }

  .lg\:pb-44{
    padding-bottom: 11rem;
  }

  .lg\:pl-44{
    padding-left: 11rem;
  }

  .lg\:pt-48{
    padding-top: 12rem;
  }

  .lg\:pr-48{
    padding-right: 12rem;
  }

  .lg\:pb-48{
    padding-bottom: 12rem;
  }

  .lg\:pl-48{
    padding-left: 12rem;
  }

  .lg\:pt-56{
    padding-top: 14rem;
  }

  .lg\:pr-56{
    padding-right: 14rem;
  }

  .lg\:pb-56{
    padding-bottom: 14rem;
  }

  .lg\:pl-56{
    padding-left: 14rem;
  }

  .lg\:pt-64{
    padding-top: 16rem;
  }

  .lg\:pr-64{
    padding-right: 16rem;
  }

  .lg\:pb-64{
    padding-bottom: 16rem;
  }

  .lg\:pl-64{
    padding-left: 16rem;
  }

  .lg\:pt-px{
    padding-top: 1px;
  }

  .lg\:pr-px{
    padding-right: 1px;
  }

  .lg\:pb-px{
    padding-bottom: 1px;
  }

  .lg\:pl-px{
    padding-left: 1px;
  }

  .lg\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .lg\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .lg\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .lg\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .lg\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:placeholder-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .lg\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .lg\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color: transparent;
  }

  .lg\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .lg\:focus\:placeholder-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .lg\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:placeholder-opacity-25::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:placeholder-opacity-50::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:placeholder-opacity-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .lg\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .lg\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .lg\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .lg\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .lg\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

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

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

  .lg\:static{
    position: static;
  }

  .lg\:fixed{
    position: fixed;
  }

  .lg\:absolute{
    position: absolute;
  }

  .lg\:relative{
    position: relative;
  }

  .lg\:sticky{
    position: sticky;
  }

  .lg\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lg\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .lg\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .lg\:inset-x-0{
    right: 0;
    left: 0;
  }

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

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

  .lg\:top-0{
    top: 0;
  }

  .lg\:right-0{
    right: 0;
  }

  .lg\:bottom-0{
    bottom: 0;
  }

  .lg\:left-0{
    left: 0;
  }

  .lg\:top-auto{
    top: auto;
  }

  .lg\:right-auto{
    right: auto;
  }

  .lg\:bottom-auto{
    bottom: auto;
  }

  .lg\:left-auto{
    left: auto;
  }

  .lg\:resize-none{
    resize: none;
  }

  .lg\:resize-y{
    resize: vertical;
  }

  .lg\:resize-x{
    resize: horizontal;
  }

  .lg\:resize{
    resize: both;
  }

  .lg\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .lg\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .lg\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .lg\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .lg\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .lg\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .lg\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .lg\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .lg\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .lg\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .lg\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .lg\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .lg\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .lg\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .lg\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .lg\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .lg\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .lg\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .lg\:fill-current{
    fill: currentColor;
  }

  .lg\:stroke-current{
    stroke: currentColor;
  }

  .lg\:stroke-0{
    stroke-width: 0;
  }

  .lg\:stroke-1{
    stroke-width: 1;
  }

  .lg\:stroke-2{
    stroke-width: 2;
  }

  .lg\:table-auto{
    table-layout: auto;
  }

  .lg\:table-fixed{
    table-layout: fixed;
  }

  .lg\:text-left{
    text-align: left;
  }

  .lg\:text-center{
    text-align: center;
  }

  .lg\:text-right{
    text-align: right;
  }

  .lg\:text-justify{
    text-align: justify;
  }

  .lg\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .lg\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:text-transparent{
    color: transparent;
  }

  .lg\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .lg\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .lg\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .lg\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .lg\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .lg\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .lg\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .lg\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .lg\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .lg\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .lg\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .lg\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .lg\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .lg\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .lg\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .lg\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .lg\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .lg\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .lg\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .lg\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .lg\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .lg\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .lg\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .lg\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .lg\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .lg\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .lg\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .lg\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .lg\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .lg\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .lg\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .lg\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:hover\:text-transparent:hover{
    color: transparent;
  }

  .lg\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .lg\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .lg\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .lg\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .lg\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .lg\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .lg\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .lg\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .lg\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .lg\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .lg\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .lg\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .lg\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .lg\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .lg\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .lg\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .lg\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .lg\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .lg\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .lg\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .lg\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .lg\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .lg\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .lg\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .lg\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .lg\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:focus\:text-transparent:focus{
    color: transparent;
  }

  .lg\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .lg\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .lg\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .lg\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .lg\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .lg\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .lg\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .lg\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .lg\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .lg\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .lg\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .lg\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .lg\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .lg\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .lg\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .lg\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .lg\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .lg\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .lg\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:focus\:text-transparent:focus{
    color: transparent;
  }

  .lg\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .lg\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .lg\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .lg\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .lg\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .lg\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .lg\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .lg\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .lg\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .lg\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .lg\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .lg\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .lg\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .lg\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .lg\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .lg\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .lg\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .lg\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .lg\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .lg\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .lg\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .lg\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .lg\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .lg\:text-opacity-0{
    --text-opacity: 0;
  }

  .lg\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .lg\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .lg\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .lg\:text-opacity-100{
    --text-opacity: 1;
  }

  .lg\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .lg\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .lg\:hover\:text-opacity-50:hover{
    --text-opacity: 0.5;
  }

  .lg\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .lg\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .lg\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .lg\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .lg\:focus\:text-opacity-50:focus{
    --text-opacity: 0.5;
  }

  .lg\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .lg\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .lg\:italic{
    font-style: italic;
  }

  .lg\:not-italic{
    font-style: normal;
  }

  .lg\:uppercase{
    text-transform: uppercase;
  }

  .lg\:lowercase{
    text-transform: lowercase;
  }

  .lg\:capitalize{
    text-transform: capitalize;
  }

  .lg\:normal-case{
    text-transform: none;
  }

  .lg\:underline{
    text-decoration: underline;
  }

  .lg\:line-through{
    text-decoration: line-through;
  }

  .lg\:no-underline{
    text-decoration: none;
  }

  .lg\:hover\:underline:hover{
    text-decoration: underline;
  }

  .lg\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .lg\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .lg\:focus\:underline:focus{
    text-decoration: underline;
  }

  .lg\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .lg\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .lg\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\: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);
  }

  .lg\:normal-nums{
    font-variant-numeric: normal;
  }

  .lg\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .lg\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .lg\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .lg\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .lg\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .lg\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .lg\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .lg\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .lg\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .lg\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .lg\:tracking-normal{
    letter-spacing: 0;
  }

  .lg\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .lg\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .lg\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .lg\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .lg\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .lg\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .lg\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .lg\:align-baseline{
    vertical-align: baseline;
  }

  .lg\:align-top{
    vertical-align: top;
  }

  .lg\:align-middle{
    vertical-align: middle;
  }

  .lg\:align-bottom{
    vertical-align: bottom;
  }

  .lg\:align-text-top{
    vertical-align: text-top;
  }

  .lg\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .lg\:visible{
    visibility: visible;
  }

  .lg\:invisible{
    visibility: hidden;
  }

  .lg\:whitespace-normal{
    white-space: normal;
  }

  .lg\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .lg\:whitespace-pre{
    white-space: pre;
  }

  .lg\:whitespace-pre-line{
    white-space: pre-line;
  }

  .lg\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .lg\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lg\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .lg\:break-all{
    word-break: break-all;
  }

  .lg\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lg\:w-0{
    width: 0;
  }

  .lg\:w-1{
    width: 0.25rem;
  }

  .lg\:w-2{
    width: 0.5rem;
  }

  .lg\:w-3{
    width: 0.75rem;
  }

  .lg\:w-4{
    width: 1rem;
  }

  .lg\:w-5{
    width: 1.25rem;
  }

  .lg\:w-6{
    width: 1.5rem;
  }

  .lg\:w-8{
    width: 2rem;
  }

  .lg\:w-10{
    width: 2.5rem;
  }

  .lg\:w-12{
    width: 3rem;
  }

  .lg\:w-14{
    width: 3.5rem;
  }

  .lg\:w-16{
    width: 4rem;
  }

  .lg\:w-20{
    width: 5rem;
  }

  .lg\:w-24{
    width: 6rem;
  }

  .lg\:w-32{
    width: 8rem;
  }

  .lg\:w-36{
    width: 9rem;
  }

  .lg\:w-40{
    width: 10rem;
  }

  .lg\:w-44{
    width: 11rem;
  }

  .lg\:w-48{
    width: 12rem;
  }

  .lg\:w-56{
    width: 14rem;
  }

  .lg\:w-64{
    width: 16rem;
  }

  .lg\:w-auto{
    width: auto;
  }

  .lg\:w-px{
    width: 1px;
  }

  .lg\:w-1\/2{
    width: 50%;
  }

  .lg\:w-1\/3{
    width: 33.333333%;
  }

  .lg\:w-2\/3{
    width: 66.666667%;
  }

  .lg\:w-1\/4{
    width: 25%;
  }

  .lg\:w-2\/4{
    width: 50%;
  }

  .lg\:w-3\/4{
    width: 75%;
  }

  .lg\:w-1\/5{
    width: 20%;
  }

  .lg\:w-2\/5{
    width: 40%;
  }

  .lg\:w-3\/5{
    width: 60%;
  }

  .lg\:w-4\/5{
    width: 80%;
  }

  .lg\:w-1\/6{
    width: 16.666667%;
  }

  .lg\:w-2\/6{
    width: 33.333333%;
  }

  .lg\:w-3\/6{
    width: 50%;
  }

  .lg\:w-4\/6{
    width: 66.666667%;
  }

  .lg\:w-5\/6{
    width: 83.333333%;
  }

  .lg\:w-1\/12{
    width: 8.333333%;
  }

  .lg\:w-2\/12{
    width: 16.666667%;
  }

  .lg\:w-3\/12{
    width: 25%;
  }

  .lg\:w-4\/12{
    width: 33.333333%;
  }

  .lg\:w-5\/12{
    width: 41.666667%;
  }

  .lg\:w-6\/12{
    width: 50%;
  }

  .lg\:w-7\/12{
    width: 58.333333%;
  }

  .lg\:w-8\/12{
    width: 66.666667%;
  }

  .lg\:w-9\/12{
    width: 75%;
  }

  .lg\:w-10\/12{
    width: 83.333333%;
  }

  .lg\:w-11\/12{
    width: 91.666667%;
  }

  .lg\:w-full{
    width: 100%;
  }

  .lg\:w-screen{
    width: 100vw;
  }

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

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

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

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

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

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

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

  .lg\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .lg\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .lg\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .lg\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .lg\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .lg\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .lg\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .lg\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .lg\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .lg\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .lg\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .lg\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .lg\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .lg\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .lg\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .lg\:gap-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .lg\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .lg\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .lg\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .lg\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .lg\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .lg\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .lg\:col-gap-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .lg\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .lg\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .lg\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .lg\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .lg\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .lg\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .lg\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .lg\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .lg\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .lg\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .lg\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .lg\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .lg\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .lg\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .lg\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .lg\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .lg\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .lg\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .lg\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .lg\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .lg\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .lg\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .lg\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .lg\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .lg\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .lg\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .lg\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .lg\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .lg\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .lg\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .lg\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .lg\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .lg\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .lg\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .lg\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .lg\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .lg\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .lg\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .lg\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .lg\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .lg\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .lg\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .lg\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .lg\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .lg\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .lg\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .lg\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .lg\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .lg\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .lg\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .lg\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .lg\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .lg\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .lg\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .lg\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .lg\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .lg\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .lg\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .lg\:row-gap-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .lg\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .lg\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .lg\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .lg\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .lg\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .lg\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .lg\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .lg\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .lg\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .lg\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .lg\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .lg\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .lg\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .lg\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .lg\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .lg\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .lg\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .lg\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .lg\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .lg\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .lg\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .lg\:gap-y-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .lg\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .lg\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .lg\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .lg\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .lg\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .lg\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .lg\:grid-flow-row{
    grid-auto-flow: row;
  }

  .lg\:grid-flow-col{
    grid-auto-flow: column;
  }

  .lg\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .lg\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .lg\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .lg\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .lg\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .lg\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:grid-cols-none{
    grid-template-columns: none;
  }

  .lg\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .lg\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .lg\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .lg\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:col-start-1{
    grid-column-start: 1;
  }

  .lg\:col-start-2{
    grid-column-start: 2;
  }

  .lg\:col-start-3{
    grid-column-start: 3;
  }

  .lg\:col-start-4{
    grid-column-start: 4;
  }

  .lg\:col-start-5{
    grid-column-start: 5;
  }

  .lg\:col-start-6{
    grid-column-start: 6;
  }

  .lg\:col-start-7{
    grid-column-start: 7;
  }

  .lg\:col-start-8{
    grid-column-start: 8;
  }

  .lg\:col-start-9{
    grid-column-start: 9;
  }

  .lg\:col-start-10{
    grid-column-start: 10;
  }

  .lg\:col-start-11{
    grid-column-start: 11;
  }

  .lg\:col-start-12{
    grid-column-start: 12;
  }

  .lg\:col-start-13{
    grid-column-start: 13;
  }

  .lg\:col-start-auto{
    grid-column-start: auto;
  }

  .lg\:col-end-1{
    grid-column-end: 1;
  }

  .lg\:col-end-2{
    grid-column-end: 2;
  }

  .lg\:col-end-3{
    grid-column-end: 3;
  }

  .lg\:col-end-4{
    grid-column-end: 4;
  }

  .lg\:col-end-5{
    grid-column-end: 5;
  }

  .lg\:col-end-6{
    grid-column-end: 6;
  }

  .lg\:col-end-7{
    grid-column-end: 7;
  }

  .lg\:col-end-8{
    grid-column-end: 8;
  }

  .lg\:col-end-9{
    grid-column-end: 9;
  }

  .lg\:col-end-10{
    grid-column-end: 10;
  }

  .lg\:col-end-11{
    grid-column-end: 11;
  }

  .lg\:col-end-12{
    grid-column-end: 12;
  }

  .lg\:col-end-13{
    grid-column-end: 13;
  }

  .lg\:col-end-auto{
    grid-column-end: auto;
  }

  .lg\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-rows-none{
    grid-template-rows: none;
  }

  .lg\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .lg\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .lg\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .lg\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .lg\:row-auto{
    grid-row: auto;
  }

  .lg\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .lg\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .lg\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .lg\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .lg\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .lg\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .lg\:row-span-full{
    grid-row: 1 / -1;
  }

  .lg\:row-start-1{
    grid-row-start: 1;
  }

  .lg\:row-start-2{
    grid-row-start: 2;
  }

  .lg\:row-start-3{
    grid-row-start: 3;
  }

  .lg\:row-start-4{
    grid-row-start: 4;
  }

  .lg\:row-start-5{
    grid-row-start: 5;
  }

  .lg\:row-start-6{
    grid-row-start: 6;
  }

  .lg\:row-start-7{
    grid-row-start: 7;
  }

  .lg\:row-start-auto{
    grid-row-start: auto;
  }

  .lg\:row-end-1{
    grid-row-end: 1;
  }

  .lg\:row-end-2{
    grid-row-end: 2;
  }

  .lg\:row-end-3{
    grid-row-end: 3;
  }

  .lg\:row-end-4{
    grid-row-end: 4;
  }

  .lg\:row-end-5{
    grid-row-end: 5;
  }

  .lg\:row-end-6{
    grid-row-end: 6;
  }

  .lg\:row-end-7{
    grid-row-end: 7;
  }

  .lg\:row-end-auto{
    grid-row-end: auto;
  }

  .lg\: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;
    -webkit-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: 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));
  }

  .lg\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .lg\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .lg\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .lg\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .lg\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .lg\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .lg\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .lg\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .lg\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .lg\:origin-top-left{
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }

  .lg\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .lg\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .lg\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .lg\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .lg\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .lg\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .lg\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .lg\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .lg\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .lg\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .lg\:scale-x-0{
    --transform-scale-x: 0;
  }

  .lg\:scale-x-50{
    --transform-scale-x: .5;
  }

  .lg\:scale-x-75{
    --transform-scale-x: .75;
  }

  .lg\:scale-x-90{
    --transform-scale-x: .9;
  }

  .lg\:scale-x-95{
    --transform-scale-x: .95;
  }

  .lg\:scale-x-100{
    --transform-scale-x: 1;
  }

  .lg\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .lg\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .lg\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .lg\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .lg\:scale-y-0{
    --transform-scale-y: 0;
  }

  .lg\:scale-y-50{
    --transform-scale-y: .5;
  }

  .lg\:scale-y-75{
    --transform-scale-y: .75;
  }

  .lg\:scale-y-90{
    --transform-scale-y: .9;
  }

  .lg\:scale-y-95{
    --transform-scale-y: .95;
  }

  .lg\:scale-y-100{
    --transform-scale-y: 1;
  }

  .lg\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .lg\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .lg\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .lg\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .lg\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .lg\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .lg\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .lg\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .lg\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .lg\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .lg\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .lg\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .lg\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .lg\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .lg\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .lg\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .lg\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .lg\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .lg\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .lg\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .lg\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .lg\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .lg\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .lg\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .lg\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .lg\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .lg\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .lg\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .lg\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .lg\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .lg\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .lg\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .lg\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .lg\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .lg\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .lg\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .lg\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .lg\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .lg\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .lg\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .lg\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .lg\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .lg\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .lg\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .lg\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .lg\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .lg\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .lg\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .lg\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .lg\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .lg\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .lg\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .lg\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .lg\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .lg\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .lg\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .lg\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .lg\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .lg\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .lg\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .lg\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .lg\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .lg\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .lg\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .lg\:rotate-0{
    --transform-rotate: 0;
  }

  .lg\:rotate-1{
    --transform-rotate: 1deg;
  }

  .lg\:rotate-2{
    --transform-rotate: 2deg;
  }

  .lg\:rotate-3{
    --transform-rotate: 3deg;
  }

  .lg\:rotate-6{
    --transform-rotate: 6deg;
  }

  .lg\:rotate-12{
    --transform-rotate: 12deg;
  }

  .lg\:rotate-45{
    --transform-rotate: 45deg;
  }

  .lg\:rotate-90{
    --transform-rotate: 90deg;
  }

  .lg\:rotate-180{
    --transform-rotate: 180deg;
  }

  .lg\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .lg\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .lg\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .lg\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .lg\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .lg\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .lg\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .lg\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .lg\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .lg\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .lg\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .lg\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .lg\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .lg\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .lg\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .lg\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .lg\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .lg\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .lg\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .lg\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .lg\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .lg\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .lg\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .lg\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .lg\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .lg\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .lg\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .lg\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .lg\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .lg\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .lg\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .lg\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .lg\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .lg\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .lg\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .lg\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .lg\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .lg\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .lg\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .lg\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .lg\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .lg\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .lg\:translate-x-0{
    --transform-translate-x: 0;
  }

  .lg\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .lg\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .lg\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .lg\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .lg\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .lg\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .lg\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .lg\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .lg\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .lg\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .lg\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .lg\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .lg\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .lg\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .lg\:translate-x-36{
    --transform-translate-x: 9rem;
  }

  .lg\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .lg\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .lg\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .lg\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .lg\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .lg\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .lg\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .lg\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .lg\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .lg\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .lg\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .lg\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .lg\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .lg\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .lg\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .lg\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .lg\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .lg\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .lg\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .lg\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .lg\:-translate-x-36{
    --transform-translate-x: -9rem;
  }

  .lg\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .lg\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .lg\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .lg\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .lg\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .lg\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .lg\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .lg\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .lg\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .lg\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .lg\:translate-y-0{
    --transform-translate-y: 0;
  }

  .lg\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .lg\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .lg\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .lg\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .lg\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .lg\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .lg\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .lg\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .lg\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .lg\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .lg\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .lg\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .lg\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .lg\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .lg\:translate-y-36{
    --transform-translate-y: 9rem;
  }

  .lg\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .lg\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .lg\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .lg\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .lg\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .lg\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .lg\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .lg\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .lg\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .lg\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .lg\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .lg\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .lg\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .lg\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .lg\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .lg\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .lg\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .lg\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .lg\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .lg\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .lg\:-translate-y-36{
    --transform-translate-y: -9rem;
  }

  .lg\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .lg\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .lg\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .lg\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .lg\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .lg\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .lg\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .lg\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .lg\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .lg\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .lg\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .lg\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .lg\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .lg\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .lg\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .lg\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .lg\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .lg\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .lg\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .lg\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .lg\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .lg\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .lg\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .lg\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .lg\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .lg\:hover\:translate-x-36:hover{
    --transform-translate-x: 9rem;
  }

  .lg\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .lg\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .lg\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .lg\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .lg\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .lg\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .lg\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .lg\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .lg\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .lg\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .lg\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .lg\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .lg\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .lg\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .lg\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .lg\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .lg\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .lg\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .lg\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .lg\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .lg\:hover\:-translate-x-36:hover{
    --transform-translate-x: -9rem;
  }

  .lg\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .lg\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .lg\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .lg\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .lg\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .lg\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .lg\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .lg\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .lg\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .lg\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .lg\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .lg\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .lg\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .lg\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .lg\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .lg\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .lg\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .lg\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .lg\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .lg\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .lg\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .lg\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .lg\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .lg\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .lg\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .lg\:hover\:translate-y-36:hover{
    --transform-translate-y: 9rem;
  }

  .lg\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .lg\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .lg\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .lg\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .lg\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .lg\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .lg\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .lg\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .lg\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .lg\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .lg\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .lg\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .lg\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .lg\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .lg\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .lg\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .lg\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .lg\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .lg\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .lg\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .lg\:hover\:-translate-y-36:hover{
    --transform-translate-y: -9rem;
  }

  .lg\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .lg\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .lg\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .lg\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .lg\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .lg\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .lg\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .lg\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .lg\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .lg\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .lg\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .lg\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .lg\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .lg\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .lg\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .lg\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .lg\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .lg\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .lg\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .lg\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .lg\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .lg\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .lg\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .lg\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .lg\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .lg\:focus\:translate-x-36:focus{
    --transform-translate-x: 9rem;
  }

  .lg\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .lg\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .lg\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .lg\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .lg\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .lg\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .lg\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .lg\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .lg\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .lg\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .lg\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .lg\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .lg\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .lg\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .lg\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .lg\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .lg\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .lg\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .lg\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .lg\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .lg\:focus\:-translate-x-36:focus{
    --transform-translate-x: -9rem;
  }

  .lg\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .lg\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .lg\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .lg\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .lg\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .lg\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .lg\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .lg\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .lg\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .lg\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .lg\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .lg\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .lg\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .lg\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .lg\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .lg\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .lg\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .lg\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .lg\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .lg\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .lg\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .lg\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .lg\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .lg\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .lg\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .lg\:focus\:translate-y-36:focus{
    --transform-translate-y: 9rem;
  }

  .lg\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .lg\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .lg\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .lg\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .lg\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .lg\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .lg\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .lg\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .lg\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .lg\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .lg\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .lg\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .lg\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .lg\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .lg\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .lg\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .lg\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .lg\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .lg\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .lg\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .lg\:focus\:-translate-y-36:focus{
    --transform-translate-y: -9rem;
  }

  .lg\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .lg\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .lg\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .lg\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .lg\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .lg\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .lg\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .lg\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .lg\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .lg\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .lg\:skew-x-0{
    --transform-skew-x: 0;
  }

  .lg\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .lg\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .lg\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .lg\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .lg\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .lg\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .lg\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .lg\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .lg\:-skew-x-2{
    --transform-skew-x: -2deg;
  }

  .lg\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .lg\:skew-y-0{
    --transform-skew-y: 0;
  }

  .lg\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .lg\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .lg\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .lg\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .lg\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .lg\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .lg\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .lg\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .lg\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .lg\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .lg\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .lg\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .lg\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .lg\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .lg\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .lg\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .lg\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .lg\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .lg\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .lg\:hover\:-skew-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .lg\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .lg\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .lg\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .lg\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .lg\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .lg\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .lg\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .lg\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .lg\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .lg\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .lg\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .lg\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .lg\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .lg\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .lg\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .lg\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .lg\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .lg\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .lg\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .lg\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .lg\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .lg\:focus\:-skew-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .lg\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .lg\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .lg\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .lg\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .lg\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .lg\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .lg\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .lg\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .lg\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .lg\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .lg\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .lg\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .lg\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .lg\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .lg\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .lg\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .lg\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .lg\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .lg\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .lg\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .lg\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .lg\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .lg\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lg\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .lg\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .lg\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .lg\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .lg\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .lg\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .lg\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .lg\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .lg\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .lg\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .lg\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .lg\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .lg\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .lg\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .lg\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .lg\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .lg\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .lg\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .lg\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .lg\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .lg\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .lg\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .lg\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .lg\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .lg\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .lg\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .lg\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .lg\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .lg\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .lg\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .lg\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .lg\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .lg\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .lg\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .lg\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .lg\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .lg\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .lg\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .lg\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .lg\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .lg\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .lg\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .lg\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .lg\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .lg\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .lg\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .lg\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .lg\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .lg\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .lg\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .lg\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .lg\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .lg\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .lg\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .lg\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .lg\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .lg\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .lg\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .lg\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .lg\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .lg\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .lg\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .lg\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .lg\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .lg\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .lg\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .lg\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .lg\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .lg\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .lg\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .lg\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .lg\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .lg\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .lg\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .lg\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .lg\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .lg\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .lg\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .lg\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .lg\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .lg\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .lg\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .lg\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .lg\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .lg\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .lg\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .lg\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .lg\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .lg\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .lg\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .lg\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .lg\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .lg\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .lg\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .lg\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .lg\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .lg\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .lg\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .lg\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .lg\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .lg\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .lg\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .lg\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .lg\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .lg\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .lg\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .lg\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .lg\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .lg\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .lg\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .lg\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .lg\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .lg\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .lg\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .lg\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .lg\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .lg\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .lg\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .lg\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .lg\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .lg\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .lg\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .lg\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .lg\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .lg\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .lg\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .lg\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .lg\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .lg\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .lg\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .lg\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .lg\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .lg\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .lg\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .lg\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .lg\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .lg\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .lg\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .lg\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .lg\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .lg\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .lg\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .lg\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .lg\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .lg\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .lg\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .lg\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .lg\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .lg\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .lg\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .lg\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .lg\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .lg\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .lg\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .lg\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .lg\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .lg\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .lg\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .lg\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .lg\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .lg\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .lg\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .lg\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .lg\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .lg\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .lg\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .lg\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .lg\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .lg\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .lg\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .lg\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .lg\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .lg\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .lg\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .lg\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .lg\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .lg\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .lg\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .lg\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .lg\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .lg\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .lg\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .lg\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .lg\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .lg\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .lg\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .lg\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .lg\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .lg\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .lg\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .lg\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .lg\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .lg\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .lg\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .lg\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .lg\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .lg\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .lg\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .lg\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .lg\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .lg\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .lg\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .lg\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .lg\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .lg\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .lg\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .lg\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .lg\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .lg\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .lg\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .lg\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .lg\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .lg\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .lg\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .lg\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .lg\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .lg\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .lg\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .lg\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .lg\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .lg\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .lg\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .lg\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .lg\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .lg\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .lg\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .lg\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .lg\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .lg\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .lg\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .lg\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .lg\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .lg\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .lg\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .lg\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .lg\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .lg\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .lg\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .lg\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .lg\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .lg\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .lg\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .lg\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .lg\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .lg\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .lg\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .lg\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .lg\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .lg\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .lg\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .lg\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .lg\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .lg\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .lg\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .lg\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .lg\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .lg\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .lg\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .lg\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .lg\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .lg\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .lg\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .lg\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .lg\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .lg\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .lg\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .lg\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .lg\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .lg\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .lg\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .lg\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .lg\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .lg\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .lg\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .lg\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .lg\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .lg\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .lg\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .lg\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .lg\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .lg\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .lg\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .lg\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .lg\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .lg\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .lg\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .lg\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .lg\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .lg\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .lg\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .lg\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .lg\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .lg\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .lg\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .lg\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .lg\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .lg\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .lg\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .lg\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .lg\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .lg\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .lg\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .lg\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .lg\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .lg\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .lg\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .lg\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .lg\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .lg\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .lg\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .lg\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .lg\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .lg\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .lg\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .lg\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .lg\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .lg\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .lg\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .lg\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .lg\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .lg\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .lg\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .lg\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .lg\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .lg\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .lg\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .lg\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .lg\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .lg\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .lg\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .lg\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .lg\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .lg\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .lg\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .lg\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .lg\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .lg\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .lg\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .lg\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .lg\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .lg\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .lg\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .lg\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .lg\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .lg\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .lg\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .lg\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .lg\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .lg\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .lg\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .lg\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .lg\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .lg\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .lg\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .lg\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .lg\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .lg\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .lg\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .lg\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .lg\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .lg\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .lg\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .lg\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .lg\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .lg\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .lg\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .lg\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .lg\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .lg\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .lg\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .lg\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .lg\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .lg\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .lg\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .lg\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .lg\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .lg\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .lg\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .lg\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .lg\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .lg\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .lg\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .lg\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .lg\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .lg\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .lg\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .lg\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .lg\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .lg\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .lg\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .lg\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .lg\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .lg\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .lg\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .lg\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .lg\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .lg\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .lg\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .lg\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .lg\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .lg\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .lg\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .lg\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .lg\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .lg\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .lg\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .lg\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .lg\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .lg\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .lg\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .lg\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .lg\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .lg\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .lg\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .lg\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .lg\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .lg\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .lg\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .lg\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .lg\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .lg\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .lg\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .lg\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .lg\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .lg\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .lg\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .lg\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .lg\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .lg\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .lg\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .lg\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .lg\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .lg\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .lg\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .lg\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .lg\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .lg\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .lg\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .lg\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .lg\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .lg\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .lg\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .lg\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .lg\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .lg\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .lg\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .lg\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .lg\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .lg\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .lg\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .lg\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .lg\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .lg\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .lg\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .lg\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .lg\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .lg\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .lg\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .lg\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .lg\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .lg\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .lg\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .lg\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .lg\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .lg\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .lg\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .lg\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .lg\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .lg\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .lg\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .lg\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .lg\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .lg\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .lg\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .lg\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .lg\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .lg\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .lg\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .lg\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .lg\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .lg\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .lg\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .lg\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .lg\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .lg\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .lg\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .lg\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .lg\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .lg\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .lg\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .lg\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .lg\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .lg\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .lg\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .lg\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .lg\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .lg\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .lg\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .lg\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .lg\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .lg\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .lg\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .lg\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .lg\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .lg\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .lg\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .lg\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .lg\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .lg\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .lg\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .lg\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .lg\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .lg\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .lg\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .lg\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .lg\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .lg\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .lg\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .lg\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .lg\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .lg\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .lg\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .lg\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .lg\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .lg\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .lg\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .lg\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .lg\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .lg\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .lg\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .lg\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .lg\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .lg\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .lg\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .lg\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .lg\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .lg\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .lg\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .lg\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .lg\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .lg\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .lg\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .lg\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .lg\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .lg\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .lg\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .lg\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .lg\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .lg\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .lg\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .lg\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .lg\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .lg\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .lg\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .lg\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .lg\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .lg\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .lg\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .lg\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .lg\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .lg\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .lg\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .lg\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .lg\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .lg\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .lg\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .lg\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .lg\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .lg\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .lg\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .lg\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .lg\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .lg\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .lg\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .lg\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .lg\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .lg\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .lg\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .lg\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .lg\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .lg\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .lg\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .lg\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .lg\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .lg\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .lg\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .lg\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .lg\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .lg\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .lg\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .lg\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .lg\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .lg\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .lg\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .lg\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .lg\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .lg\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .lg\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .lg\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .lg\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .lg\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .lg\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .lg\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .lg\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .lg\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .lg\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .lg\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .lg\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .lg\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .lg\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .lg\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .lg\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .lg\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .lg\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .lg\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .lg\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .lg\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .lg\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .lg\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .lg\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .lg\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .lg\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .lg\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .lg\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .lg\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .lg\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .lg\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .lg\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .lg\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .lg\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .lg\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .lg\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .lg\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .lg\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .lg\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .lg\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .lg\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .lg\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .lg\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .lg\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .lg\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .lg\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .lg\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .lg\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .lg\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .lg\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .lg\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .lg\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .lg\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .lg\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .lg\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .lg\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .lg\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .lg\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .lg\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .lg\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .lg\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .lg\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .lg\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .lg\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .lg\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .lg\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .lg\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .lg\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .lg\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .lg\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .lg\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .lg\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .lg\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .lg\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .lg\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .lg\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .lg\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .lg\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .lg\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .lg\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .lg\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .lg\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .lg\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .lg\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .lg\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .lg\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .lg\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .lg\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .lg\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .lg\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .lg\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .lg\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .lg\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .lg\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .lg\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .lg\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .lg\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .lg\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .lg\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .lg\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .lg\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .lg\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .lg\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .lg\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .lg\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .lg\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .lg\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .lg\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .lg\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .lg\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .lg\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .lg\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .lg\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .lg\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .lg\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .lg\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .lg\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .lg\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .lg\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .lg\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .lg\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .lg\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .lg\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .lg\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .lg\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .lg\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .lg\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .lg\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .lg\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .lg\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .lg\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .lg\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .lg\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .lg\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .lg\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .lg\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .lg\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .lg\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .lg\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .lg\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .lg\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .lg\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .lg\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .lg\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .lg\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .lg\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .lg\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .lg\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .lg\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .lg\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .lg\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .lg\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .lg\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .lg\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .lg\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .lg\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .lg\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .lg\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .lg\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .lg\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .lg\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .lg\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .lg\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .lg\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .lg\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .lg\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .lg\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .lg\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .lg\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .lg\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .lg\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .lg\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .lg\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .lg\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .lg\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .lg\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .lg\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .lg\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .lg\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .lg\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .lg\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .lg\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .lg\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .lg\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .lg\:container{
      max-width: 576px;
    }
  }

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

  @media (min-width: 992px){
    .lg\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .lg\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .lg\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .lg\:container{
      max-width: 1920px;
    }
  }
}

@media (min-width: 1200px){
  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

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

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

  .xl\: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));
  }

  .xl\: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)));
  }

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

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

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

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

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

  .xl\:-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));
  }

  .xl\:-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)));
  }

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

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

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

  .xl\:-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));
  }

  .xl\:-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)));
  }

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

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

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

  .xl\: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));
  }

  .xl\: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)));
  }

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

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

  .xl\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .xl\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .xl\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

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

  .xl\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .xl\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .xl\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .xl\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .xl\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .xl\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .xl\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .xl\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--divide-opacity));
  }

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

  .xl\:divide-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .xl\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .xl\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .xl\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .xl\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .xl\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .xl\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .xl\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .xl\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .xl\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .xl\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .xl\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .xl\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .xl\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .xl\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .xl\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .xl\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .xl\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .xl\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .xl\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .xl\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .xl\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .xl\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .xl\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .xl\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--divide-opacity));
  }

  .xl\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .xl\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .xl\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .xl\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .xl\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .xl\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .xl\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .xl\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: 0.5;
  }

  .xl\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .xl\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .xl\: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;
  }

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

  .xl\: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;
  }

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

  .xl\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xl\:bg-fixed{
    background-attachment: fixed;
  }

  .xl\:bg-local{
    background-attachment: local;
  }

  .xl\:bg-scroll{
    background-attachment: scroll;
  }

  .xl\:bg-clip-border{
    background-clip: border-box;
  }

  .xl\:bg-clip-padding{
    background-clip: padding-box;
  }

  .xl\:bg-clip-content{
    background-clip: content-box;
  }

  .xl\:bg-clip-text{
    background-clip: text;
  }

  .xl\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xl\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:bg-transparent{
    background-color: transparent;
  }

  .xl\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xl\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xl\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xl\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xl\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xl\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xl\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xl\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xl\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xl\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xl\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xl\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xl\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xl\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xl\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xl\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xl\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xl\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xl\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xl\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xl\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xl\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xl\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xl\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xl\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xl\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xl\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xl\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xl\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xl\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xl\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xl\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .xl\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xl\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xl\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xl\:hover\:bg-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xl\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xl\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xl\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xl\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xl\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xl\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xl\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xl\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .xl\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xl\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xl\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xl\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xl\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xl\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xl\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xl\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .xl\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xl\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xl\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xl\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xl\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xl\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xl\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xl\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xl\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xl\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .xl\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xl\:bg-none{
    background-image: none;
  }

  .xl\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .xl\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .xl\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xl\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xl\:from-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xl\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xl\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xl\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xl\:from-white{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xl\:from-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xl\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xl\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xl\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xl\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xl\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xl\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xl\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xl\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xl\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xl\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xl\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xl\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xl\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xl\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xl\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xl\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xl\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xl\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xl\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xl\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xl\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xl\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xl\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xl\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xl\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xl\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\: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));
  }

  .xl\:via-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xl\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xl\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xl\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xl\: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));
  }

  .xl\:via-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xl\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xl\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xl\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xl\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xl\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xl\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xl\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xl\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xl\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xl\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xl\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xl\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xl\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xl\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xl\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xl\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xl\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xl\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xl\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xl\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xl\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xl\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xl\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xl\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xl\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .xl\:to-form{
    --gradient-to-color: #79828B;
  }

  .xl\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .xl\:to-transparent{
    --gradient-to-color: transparent;
  }

  .xl\:to-black{
    --gradient-to-color: #212529;
  }

  .xl\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .xl\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .xl\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .xl\:to-grey{
    --gradient-to-color: #79828B;
  }

  .xl\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .xl\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .xl\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .xl\:to-white{
    --gradient-to-color: #ffffff;
  }

  .xl\:to-red{
    --gradient-to-color: #D31A08;
  }

  .xl\:to-green{
    --gradient-to-color: #66BB08;
  }

  .xl\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .xl\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .xl\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .xl\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .xl\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .xl\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .xl\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .xl\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .xl\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .xl\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .xl\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .xl\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .xl\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .xl\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .xl\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .xl\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .xl\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .xl\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .xl\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .xl\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .xl\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .xl\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .xl\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .xl\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xl\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xl\:hover\:from-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xl\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xl\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xl\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xl\:hover\:from-white:hover{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xl\:hover\:from-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xl\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xl\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xl\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xl\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xl\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xl\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xl\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xl\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xl\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xl\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xl\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xl\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xl\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xl\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xl\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xl\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xl\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xl\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xl\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xl\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xl\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xl\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xl\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xl\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xl\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xl\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\: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));
  }

  .xl\:hover\:via-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xl\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xl\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xl\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xl\: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));
  }

  .xl\:hover\:via-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xl\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xl\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xl\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xl\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xl\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xl\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xl\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xl\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xl\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xl\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xl\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xl\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xl\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xl\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xl\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xl\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xl\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xl\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xl\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xl\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xl\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xl\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xl\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xl\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xl\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .xl\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .xl\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .xl\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .xl\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .xl\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .xl\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .xl\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .xl\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .xl\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .xl\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .xl\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .xl\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .xl\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .xl\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .xl\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .xl\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .xl\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .xl\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .xl\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .xl\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .xl\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .xl\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .xl\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .xl\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .xl\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .xl\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .xl\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .xl\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .xl\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .xl\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .xl\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .xl\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .xl\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .xl\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .xl\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .xl\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .xl\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .xl\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xl\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xl\:focus\:from-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xl\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xl\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xl\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xl\:focus\:from-white:focus{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xl\:focus\:from-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xl\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xl\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xl\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xl\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xl\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xl\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xl\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xl\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xl\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xl\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xl\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xl\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xl\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xl\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xl\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xl\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xl\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xl\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xl\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xl\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xl\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xl\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xl\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xl\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xl\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xl\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\: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));
  }

  .xl\:focus\:via-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xl\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xl\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xl\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xl\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xl\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xl\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xl\: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));
  }

  .xl\:focus\:via-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xl\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xl\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xl\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xl\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xl\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xl\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xl\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xl\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xl\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xl\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xl\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xl\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xl\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xl\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xl\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xl\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xl\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xl\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xl\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xl\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xl\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xl\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xl\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xl\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xl\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .xl\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .xl\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .xl\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .xl\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .xl\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .xl\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .xl\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .xl\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .xl\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .xl\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .xl\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .xl\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .xl\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .xl\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .xl\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .xl\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .xl\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .xl\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .xl\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .xl\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .xl\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .xl\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .xl\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .xl\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .xl\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .xl\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .xl\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .xl\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .xl\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .xl\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .xl\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .xl\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .xl\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .xl\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .xl\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .xl\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .xl\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .xl\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .xl\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .xl\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .xl\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .xl\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .xl\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .xl\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .xl\:hover\:bg-opacity-50:hover{
    --bg-opacity: 0.5;
  }

  .xl\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .xl\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .xl\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .xl\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .xl\:focus\:bg-opacity-50:focus{
    --bg-opacity: 0.5;
  }

  .xl\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .xl\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .xl\:bg-bottom{
    background-position: bottom;
  }

  .xl\:bg-center{
    background-position: center;
  }

  .xl\:bg-left{
    background-position: left;
  }

  .xl\:bg-left-bottom{
    background-position: left bottom;
  }

  .xl\:bg-left-top{
    background-position: left top;
  }

  .xl\:bg-right{
    background-position: right;
  }

  .xl\:bg-right-bottom{
    background-position: right bottom;
  }

  .xl\:bg-right-top{
    background-position: right top;
  }

  .xl\:bg-top{
    background-position: top;
  }

  .xl\:bg-repeat{
    background-repeat: repeat;
  }

  .xl\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .xl\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .xl\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .xl\:bg-repeat-round{
    background-repeat: round;
  }

  .xl\:bg-repeat-space{
    background-repeat: space;
  }

  .xl\:bg-auto{
    background-size: auto;
  }

  .xl\:bg-cover{
    background-size: cover;
  }

  .xl\:bg-contain{
    background-size: contain;
  }

  .xl\:border-collapse{
    border-collapse: collapse;
  }

  .xl\:border-separate{
    border-collapse: separate;
  }

  .xl\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xl\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:border-transparent{
    border-color: transparent;
  }

  .xl\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xl\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xl\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xl\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xl\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xl\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xl\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xl\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xl\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xl\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xl\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xl\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xl\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xl\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xl\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xl\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xl\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xl\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xl\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xl\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xl\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xl\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xl\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xl\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xl\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xl\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xl\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xl\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xl\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xl\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xl\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xl\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .xl\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xl\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xl\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xl\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xl\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xl\:hover\:border-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xl\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xl\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xl\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xl\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xl\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xl\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xl\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xl\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xl\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xl\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xl\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xl\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xl\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xl\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xl\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xl\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xl\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xl\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xl\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xl\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .xl\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xl\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xl\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xl\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xl\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xl\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xl\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xl\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xl\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xl\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xl\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xl\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xl\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xl\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xl\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xl\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xl\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xl\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xl\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .xl\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xl\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xl\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xl\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xl\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xl\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xl\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xl\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xl\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xl\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xl\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xl\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xl\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xl\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xl\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xl\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xl\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xl\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xl\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xl\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xl\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xl\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .xl\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xl\:border-opacity-0{
    --border-opacity: 0;
  }

  .xl\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .xl\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .xl\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .xl\:border-opacity-100{
    --border-opacity: 1;
  }

  .xl\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .xl\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .xl\:hover\:border-opacity-50:hover{
    --border-opacity: 0.5;
  }

  .xl\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .xl\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .xl\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .xl\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .xl\:focus\:border-opacity-50:focus{
    --border-opacity: 0.5;
  }

  .xl\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .xl\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .xl\:rounded-none{
    border-radius: 0;
  }

  .xl\:rounded-xs{
    border-radius: 0.061rem;
  }

  .xl\:rounded-sm{
    border-radius: 0.125rem;
  }

  .xl\:rounded{
    border-radius: 0.25rem;
  }

  .xl\:rounded-lg{
    border-radius: 0.5rem;
  }

  .xl\:rounded-full{
    border-radius: 9999px;
  }

  .xl\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xl\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-t-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .xl\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .xl\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .xl\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .xl\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .xl\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .xl\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .xl\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .xl\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .xl\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .xl\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .xl\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .xl\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .xl\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .xl\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .xl\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .xl\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .xl\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .xl\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-tl-xs{
    border-top-left-radius: 0.061rem;
  }

  .xl\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .xl\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .xl\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .xl\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .xl\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .xl\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .xl\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .xl\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .xl\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .xl\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .xl\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .xl\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .xl\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .xl\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .xl\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .xl\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .xl\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .xl\:border-solid{
    border-style: solid;
  }

  .xl\:border-dashed{
    border-style: dashed;
  }

  .xl\:border-dotted{
    border-style: dotted;
  }

  .xl\:border-double{
    border-style: double;
  }

  .xl\:border-none{
    border-style: none;
  }

  .xl\:border-0{
    border-width: 0;
  }

  .xl\:border-2{
    border-width: 2px;
  }

  .xl\:border-4{
    border-width: 4px;
  }

  .xl\:border-8{
    border-width: 8px;
  }

  .xl\:border{
    border-width: 1px;
  }

  .xl\:border-t-0{
    border-top-width: 0;
  }

  .xl\:border-r-0{
    border-right-width: 0;
  }

  .xl\:border-b-0{
    border-bottom-width: 0;
  }

  .xl\:border-l-0{
    border-left-width: 0;
  }

  .xl\:border-t-2{
    border-top-width: 2px;
  }

  .xl\:border-r-2{
    border-right-width: 2px;
  }

  .xl\:border-b-2{
    border-bottom-width: 2px;
  }

  .xl\:border-l-2{
    border-left-width: 2px;
  }

  .xl\:border-t-4{
    border-top-width: 4px;
  }

  .xl\:border-r-4{
    border-right-width: 4px;
  }

  .xl\:border-b-4{
    border-bottom-width: 4px;
  }

  .xl\:border-l-4{
    border-left-width: 4px;
  }

  .xl\:border-t-8{
    border-top-width: 8px;
  }

  .xl\:border-r-8{
    border-right-width: 8px;
  }

  .xl\:border-b-8{
    border-bottom-width: 8px;
  }

  .xl\:border-l-8{
    border-left-width: 8px;
  }

  .xl\:border-t{
    border-top-width: 1px;
  }

  .xl\:border-r{
    border-right-width: 1px;
  }

  .xl\:border-b{
    border-bottom-width: 1px;
  }

  .xl\:border-l{
    border-left-width: 1px;
  }

  .xl\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .xl\:box-content{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .xl\:cursor-auto{
    cursor: auto;
  }

  .xl\:cursor-default{
    cursor: default;
  }

  .xl\:cursor-pointer{
    cursor: pointer;
  }

  .xl\:cursor-wait{
    cursor: wait;
  }

  .xl\:cursor-text{
    cursor: text;
  }

  .xl\:cursor-move{
    cursor: move;
  }

  .xl\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .xl\:block{
    display: block;
  }

  .xl\:inline-block{
    display: inline-block;
  }

  .xl\:inline{
    display: inline;
  }

  .xl\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .xl\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .xl\:table{
    display: table;
  }

  .xl\:table-caption{
    display: table-caption;
  }

  .xl\:table-cell{
    display: table-cell;
  }

  .xl\:table-column{
    display: table-column;
  }

  .xl\:table-column-group{
    display: table-column-group;
  }

  .xl\:table-footer-group{
    display: table-footer-group;
  }

  .xl\:table-header-group{
    display: table-header-group;
  }

  .xl\:table-row-group{
    display: table-row-group;
  }

  .xl\:table-row{
    display: table-row;
  }

  .xl\:flow-root{
    display: flow-root;
  }

  .xl\:grid{
    display: grid;
  }

  .xl\:inline-grid{
    display: inline-grid;
  }

  .xl\:contents{
    display: contents;
  }

  .xl\:hidden{
    display: none;
  }

  .xl\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .xl\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .xl\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .xl\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .xl\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .xl\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .xl\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .xl\:place-items-auto{
    place-items: auto;
  }

  .xl\:place-items-start{
    place-items: start;
  }

  .xl\:place-items-end{
    place-items: end;
  }

  .xl\:place-items-center{
    place-items: center;
  }

  .xl\:place-items-stretch{
    place-items: stretch;
  }

  .xl\:place-content-center{
    place-content: center;
  }

  .xl\:place-content-start{
    place-content: start;
  }

  .xl\:place-content-end{
    place-content: end;
  }

  .xl\:place-content-between{
    place-content: space-between;
  }

  .xl\:place-content-around{
    place-content: space-around;
  }

  .xl\:place-content-evenly{
    place-content: space-evenly;
  }

  .xl\:place-content-stretch{
    place-content: stretch;
  }

  .xl\:place-self-auto{
    place-self: auto;
  }

  .xl\:place-self-start{
    place-self: start;
  }

  .xl\:place-self-end{
    place-self: end;
  }

  .xl\:place-self-center{
    place-self: center;
  }

  .xl\:place-self-stretch{
    place-self: stretch;
  }

  .xl\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .xl\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .xl\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .xl\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .xl\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .xl\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .xl\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .xl\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .xl\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .xl\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .xl\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .xl\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .xl\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .xl\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .xl\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .xl\:self-stretch{
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .xl\:justify-items-auto{
    justify-items: auto;
  }

  .xl\:justify-items-start{
    justify-items: start;
  }

  .xl\:justify-items-end{
    justify-items: end;
  }

  .xl\:justify-items-center{
    justify-items: center;
  }

  .xl\:justify-items-stretch{
    justify-items: stretch;
  }

  .xl\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xl\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xl\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .xl\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .xl\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .xl\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .xl\:justify-self-auto{
    justify-self: auto;
  }

  .xl\:justify-self-start{
    justify-self: start;
  }

  .xl\:justify-self-end{
    justify-self: end;
  }

  .xl\:justify-self-center{
    justify-self: center;
  }

  .xl\:justify-self-stretch{
    justify-self: stretch;
  }

  .xl\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .xl\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .xl\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .xl\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .xl\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .xl\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .xl\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .xl\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .xl\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .xl\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .xl\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .xl\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .xl\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .xl\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .xl\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .xl\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .xl\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .xl\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .xl\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .xl\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .xl\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .xl\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .xl\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .xl\:float-right{
    float: right;
  }

  .xl\:float-left{
    float: left;
  }

  .xl\:float-none{
    float: none;
  }

  .xl\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .xl\:clear-left{
    clear: left;
  }

  .xl\:clear-right{
    clear: right;
  }

  .xl\:clear-both{
    clear: both;
  }

  .xl\:clear-none{
    clear: none;
  }

  .xl\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .xl\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .xl\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .xl\:font-hairline{
    font-weight: 100;
  }

  .xl\:font-thin{
    font-weight: 200;
  }

  .xl\:font-light{
    font-weight: 300;
  }

  .xl\:font-normal{
    font-weight: 400;
  }

  .xl\:font-medium{
    font-weight: 500;
  }

  .xl\:font-semibold{
    font-weight: 600;
  }

  .xl\:font-bold{
    font-weight: 700;
  }

  .xl\:font-extrabold{
    font-weight: 800;
  }

  .xl\:font-black{
    font-weight: 900;
  }

  .xl\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .xl\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .xl\:hover\:font-light:hover{
    font-weight: 300;
  }

  .xl\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .xl\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .xl\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .xl\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .xl\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .xl\:hover\:font-black:hover{
    font-weight: 900;
  }

  .xl\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .xl\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .xl\:focus\:font-light:focus{
    font-weight: 300;
  }

  .xl\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .xl\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .xl\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .xl\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .xl\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .xl\:focus\:font-black:focus{
    font-weight: 900;
  }

  .xl\:h-0{
    height: 0;
  }

  .xl\:h-1{
    height: 0.25rem;
  }

  .xl\:h-2{
    height: 0.5rem;
  }

  .xl\:h-3{
    height: 0.75rem;
  }

  .xl\:h-4{
    height: 1rem;
  }

  .xl\:h-5{
    height: 1.25rem;
  }

  .xl\:h-6{
    height: 1.5rem;
  }

  .xl\:h-8{
    height: 2rem;
  }

  .xl\:h-10{
    height: 2.5rem;
  }

  .xl\:h-12{
    height: 3rem;
  }

  .xl\:h-14{
    height: 3.5rem;
  }

  .xl\:h-16{
    height: 4rem;
  }

  .xl\:h-20{
    height: 5rem;
  }

  .xl\:h-21{
    height: 5.25rem;
  }

  .xl\:h-24{
    height: 6rem;
  }

  .xl\:h-32{
    height: 8rem;
  }

  .xl\:h-36{
    height: 9rem;
  }

  .xl\:h-40{
    height: 10rem;
  }

  .xl\:h-44{
    height: 11rem;
  }

  .xl\:h-48{
    height: 12rem;
  }

  .xl\:h-56{
    height: 14rem;
  }

  .xl\:h-64{
    height: 16rem;
  }

  .xl\:h-544{
    height: 34rem;
  }

  .xl\:h-auto{
    height: auto;
  }

  .xl\:h-px{
    height: 1px;
  }

  .xl\:h-full{
    height: 100%;
  }

  .xl\:h-screen{
    height: 100vh;
  }

  .xl\:text-0{
    font-size: 0;
  }

  .xl\:text-xxs{
    font-size: .75rem;
  }

  .xl\:text-xs{
    font-size: .8125rem;
  }

  .xl\:text-sm{
    font-size: .875rem;
  }

  .xl\:text-base{
    font-size: .9375rem;
  }

  .xl\:text-lg{
    font-size: 1rem;
  }

  .xl\:text-2lg{
    font-size: 1.125rem;
  }

  .xl\:text-xl{
    font-size: 1.25rem;
  }

  .xl\:text-2xl{
    font-size: 1.5rem;
  }

  .xl\:text-3xl{
    font-size: 2rem;
  }

  .xl\:text-4xl{
    font-size: 2.25rem;
  }

  .xl\:text-5xl{
    font-size: 3rem;
  }

  .xl\:leading-none{
    line-height: 1;
  }

  .xl\:leading-tight{
    line-height: 1.25;
  }

  .xl\:leading-snug{
    line-height: 1.375;
  }

  .xl\:leading-normal{
    line-height: 1.5;
  }

  .xl\:leading-relaxed{
    line-height: 1.625;
  }

  .xl\:leading-loose{
    line-height: 2;
  }

  .xl\:list-inside{
    list-style-position: inside;
  }

  .xl\:list-outside{
    list-style-position: outside;
  }

  .xl\:list-none{
    list-style-type: none;
  }

  .xl\:list-disc{
    list-style-type: disc;
  }

  .xl\:list-decimal{
    list-style-type: decimal;
  }

  .xl\:m-0{
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:m-auto{
    margin: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .xl\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:mt-0{
    margin-top: 0;
  }

  .xl\:mr-0{
    margin-right: 0;
  }

  .xl\:mb-0{
    margin-bottom: 0;
  }

  .xl\:ml-0{
    margin-left: 0;
  }

  .xl\:mt-1{
    margin-top: 0.25rem;
  }

  .xl\:mr-1{
    margin-right: 0.25rem;
  }

  .xl\:mb-1{
    margin-bottom: 0.25rem;
  }

  .xl\:ml-1{
    margin-left: 0.25rem;
  }

  .xl\:mt-2{
    margin-top: 0.5rem;
  }

  .xl\:mr-2{
    margin-right: 0.5rem;
  }

  .xl\:mb-2{
    margin-bottom: 0.5rem;
  }

  .xl\:ml-2{
    margin-left: 0.5rem;
  }

  .xl\:mt-3{
    margin-top: 0.75rem;
  }

  .xl\:mr-3{
    margin-right: 0.75rem;
  }

  .xl\:mb-3{
    margin-bottom: 0.75rem;
  }

  .xl\:ml-3{
    margin-left: 0.75rem;
  }

  .xl\:mt-4{
    margin-top: 1rem;
  }

  .xl\:mr-4{
    margin-right: 1rem;
  }

  .xl\:mb-4{
    margin-bottom: 1rem;
  }

  .xl\:ml-4{
    margin-left: 1rem;
  }

  .xl\:mt-5{
    margin-top: 1.25rem;
  }

  .xl\:mr-5{
    margin-right: 1.25rem;
  }

  .xl\:mb-5{
    margin-bottom: 1.25rem;
  }

  .xl\:ml-5{
    margin-left: 1.25rem;
  }

  .xl\:mt-6{
    margin-top: 1.5rem;
  }

  .xl\:mr-6{
    margin-right: 1.5rem;
  }

  .xl\:mb-6{
    margin-bottom: 1.5rem;
  }

  .xl\:ml-6{
    margin-left: 1.5rem;
  }

  .xl\:mt-8{
    margin-top: 2rem;
  }

  .xl\:mr-8{
    margin-right: 2rem;
  }

  .xl\:mb-8{
    margin-bottom: 2rem;
  }

  .xl\:ml-8{
    margin-left: 2rem;
  }

  .xl\:mt-10{
    margin-top: 2.5rem;
  }

  .xl\:mr-10{
    margin-right: 2.5rem;
  }

  .xl\:mb-10{
    margin-bottom: 2.5rem;
  }

  .xl\:ml-10{
    margin-left: 2.5rem;
  }

  .xl\:mt-12{
    margin-top: 3rem;
  }

  .xl\:mr-12{
    margin-right: 3rem;
  }

  .xl\:mb-12{
    margin-bottom: 3rem;
  }

  .xl\:ml-12{
    margin-left: 3rem;
  }

  .xl\:mt-14{
    margin-top: 3.5rem;
  }

  .xl\:mr-14{
    margin-right: 3.5rem;
  }

  .xl\:mb-14{
    margin-bottom: 3.5rem;
  }

  .xl\:ml-14{
    margin-left: 3.5rem;
  }

  .xl\:mt-16{
    margin-top: 4rem;
  }

  .xl\:mr-16{
    margin-right: 4rem;
  }

  .xl\:mb-16{
    margin-bottom: 4rem;
  }

  .xl\:ml-16{
    margin-left: 4rem;
  }

  .xl\:mt-20{
    margin-top: 5rem;
  }

  .xl\:mr-20{
    margin-right: 5rem;
  }

  .xl\:mb-20{
    margin-bottom: 5rem;
  }

  .xl\:ml-20{
    margin-left: 5rem;
  }

  .xl\:mt-24{
    margin-top: 6rem;
  }

  .xl\:mr-24{
    margin-right: 6rem;
  }

  .xl\:mb-24{
    margin-bottom: 6rem;
  }

  .xl\:ml-24{
    margin-left: 6rem;
  }

  .xl\:mt-32{
    margin-top: 8rem;
  }

  .xl\:mr-32{
    margin-right: 8rem;
  }

  .xl\:mb-32{
    margin-bottom: 8rem;
  }

  .xl\:ml-32{
    margin-left: 8rem;
  }

  .xl\:mt-36{
    margin-top: 9rem;
  }

  .xl\:mr-36{
    margin-right: 9rem;
  }

  .xl\:mb-36{
    margin-bottom: 9rem;
  }

  .xl\:ml-36{
    margin-left: 9rem;
  }

  .xl\:mt-40{
    margin-top: 10rem;
  }

  .xl\:mr-40{
    margin-right: 10rem;
  }

  .xl\:mb-40{
    margin-bottom: 10rem;
  }

  .xl\:ml-40{
    margin-left: 10rem;
  }

  .xl\:mt-44{
    margin-top: 11rem;
  }

  .xl\:mr-44{
    margin-right: 11rem;
  }

  .xl\:mb-44{
    margin-bottom: 11rem;
  }

  .xl\:ml-44{
    margin-left: 11rem;
  }

  .xl\:mt-48{
    margin-top: 12rem;
  }

  .xl\:mr-48{
    margin-right: 12rem;
  }

  .xl\:mb-48{
    margin-bottom: 12rem;
  }

  .xl\:ml-48{
    margin-left: 12rem;
  }

  .xl\:mt-56{
    margin-top: 14rem;
  }

  .xl\:mr-56{
    margin-right: 14rem;
  }

  .xl\:mb-56{
    margin-bottom: 14rem;
  }

  .xl\:ml-56{
    margin-left: 14rem;
  }

  .xl\:mt-64{
    margin-top: 16rem;
  }

  .xl\:mr-64{
    margin-right: 16rem;
  }

  .xl\:mb-64{
    margin-bottom: 16rem;
  }

  .xl\:ml-64{
    margin-left: 16rem;
  }

  .xl\:mt-auto{
    margin-top: auto;
  }

  .xl\:mr-auto{
    margin-right: auto;
  }

  .xl\:mb-auto{
    margin-bottom: auto;
  }

  .xl\:ml-auto{
    margin-left: auto;
  }

  .xl\:mt-px{
    margin-top: 1px;
  }

  .xl\:mr-px{
    margin-right: 1px;
  }

  .xl\:mb-px{
    margin-bottom: 1px;
  }

  .xl\:ml-px{
    margin-left: 1px;
  }

  .xl\:-mt-1{
    margin-top: -0.25rem;
  }

  .xl\:-mr-1{
    margin-right: -0.25rem;
  }

  .xl\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .xl\:-ml-1{
    margin-left: -0.25rem;
  }

  .xl\:-mt-2{
    margin-top: -0.5rem;
  }

  .xl\:-mr-2{
    margin-right: -0.5rem;
  }

  .xl\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .xl\:-ml-2{
    margin-left: -0.5rem;
  }

  .xl\:-mt-3{
    margin-top: -0.75rem;
  }

  .xl\:-mr-3{
    margin-right: -0.75rem;
  }

  .xl\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .xl\:-ml-3{
    margin-left: -0.75rem;
  }

  .xl\:-mt-4{
    margin-top: -1rem;
  }

  .xl\:-mr-4{
    margin-right: -1rem;
  }

  .xl\:-mb-4{
    margin-bottom: -1rem;
  }

  .xl\:-ml-4{
    margin-left: -1rem;
  }

  .xl\:-mt-5{
    margin-top: -1.25rem;
  }

  .xl\:-mr-5{
    margin-right: -1.25rem;
  }

  .xl\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .xl\:-ml-5{
    margin-left: -1.25rem;
  }

  .xl\:-mt-6{
    margin-top: -1.5rem;
  }

  .xl\:-mr-6{
    margin-right: -1.5rem;
  }

  .xl\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .xl\:-ml-6{
    margin-left: -1.5rem;
  }

  .xl\:-mt-8{
    margin-top: -2rem;
  }

  .xl\:-mr-8{
    margin-right: -2rem;
  }

  .xl\:-mb-8{
    margin-bottom: -2rem;
  }

  .xl\:-ml-8{
    margin-left: -2rem;
  }

  .xl\:-mt-10{
    margin-top: -2.5rem;
  }

  .xl\:-mr-10{
    margin-right: -2.5rem;
  }

  .xl\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .xl\:-ml-10{
    margin-left: -2.5rem;
  }

  .xl\:-mt-12{
    margin-top: -3rem;
  }

  .xl\:-mr-12{
    margin-right: -3rem;
  }

  .xl\:-mb-12{
    margin-bottom: -3rem;
  }

  .xl\:-ml-12{
    margin-left: -3rem;
  }

  .xl\:-mt-14{
    margin-top: -3.5rem;
  }

  .xl\:-mr-14{
    margin-right: -3.5rem;
  }

  .xl\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .xl\:-ml-14{
    margin-left: -3.5rem;
  }

  .xl\:-mt-16{
    margin-top: -4rem;
  }

  .xl\:-mr-16{
    margin-right: -4rem;
  }

  .xl\:-mb-16{
    margin-bottom: -4rem;
  }

  .xl\:-ml-16{
    margin-left: -4rem;
  }

  .xl\:-mt-20{
    margin-top: -5rem;
  }

  .xl\:-mr-20{
    margin-right: -5rem;
  }

  .xl\:-mb-20{
    margin-bottom: -5rem;
  }

  .xl\:-ml-20{
    margin-left: -5rem;
  }

  .xl\:-mt-24{
    margin-top: -6rem;
  }

  .xl\:-mr-24{
    margin-right: -6rem;
  }

  .xl\:-mb-24{
    margin-bottom: -6rem;
  }

  .xl\:-ml-24{
    margin-left: -6rem;
  }

  .xl\:-mt-32{
    margin-top: -8rem;
  }

  .xl\:-mr-32{
    margin-right: -8rem;
  }

  .xl\:-mb-32{
    margin-bottom: -8rem;
  }

  .xl\:-ml-32{
    margin-left: -8rem;
  }

  .xl\:-mt-36{
    margin-top: -9rem;
  }

  .xl\:-mr-36{
    margin-right: -9rem;
  }

  .xl\:-mb-36{
    margin-bottom: -9rem;
  }

  .xl\:-ml-36{
    margin-left: -9rem;
  }

  .xl\:-mt-40{
    margin-top: -10rem;
  }

  .xl\:-mr-40{
    margin-right: -10rem;
  }

  .xl\:-mb-40{
    margin-bottom: -10rem;
  }

  .xl\:-ml-40{
    margin-left: -10rem;
  }

  .xl\:-mt-44{
    margin-top: -11rem;
  }

  .xl\:-mr-44{
    margin-right: -11rem;
  }

  .xl\:-mb-44{
    margin-bottom: -11rem;
  }

  .xl\:-ml-44{
    margin-left: -11rem;
  }

  .xl\:-mt-48{
    margin-top: -12rem;
  }

  .xl\:-mr-48{
    margin-right: -12rem;
  }

  .xl\:-mb-48{
    margin-bottom: -12rem;
  }

  .xl\:-ml-48{
    margin-left: -12rem;
  }

  .xl\:-mt-56{
    margin-top: -14rem;
  }

  .xl\:-mr-56{
    margin-right: -14rem;
  }

  .xl\:-mb-56{
    margin-bottom: -14rem;
  }

  .xl\:-ml-56{
    margin-left: -14rem;
  }

  .xl\:-mt-64{
    margin-top: -16rem;
  }

  .xl\:-mr-64{
    margin-right: -16rem;
  }

  .xl\:-mb-64{
    margin-bottom: -16rem;
  }

  .xl\:-ml-64{
    margin-left: -16rem;
  }

  .xl\:-mt-px{
    margin-top: -1px;
  }

  .xl\:-mr-px{
    margin-right: -1px;
  }

  .xl\:-mb-px{
    margin-bottom: -1px;
  }

  .xl\:-ml-px{
    margin-left: -1px;
  }

  .xl\:max-h-full{
    max-height: 100%;
  }

  .xl\:max-h-screen{
    max-height: 100vh;
  }

  .xl\:max-w-none{
    max-width: none;
  }

  .xl\:max-w-xs{
    max-width: 20rem;
  }

  .xl\:max-w-sm{
    max-width: 24rem;
  }

  .xl\:max-w-md{
    max-width: 28rem;
  }

  .xl\:max-w-lg{
    max-width: 32rem;
  }

  .xl\:max-w-xl{
    max-width: 36rem;
  }

  .xl\:max-w-2xl{
    max-width: 42rem;
  }

  .xl\:max-w-3xl{
    max-width: 48rem;
  }

  .xl\:max-w-4xl{
    max-width: 56rem;
  }

  .xl\:max-w-5xl{
    max-width: 64rem;
  }

  .xl\:max-w-6xl{
    max-width: 72rem;
  }

  .xl\:max-w-full{
    max-width: 100%;
  }

  .xl\:max-w-screen-xs{
    max-width: 420px;
  }

  .xl\:max-w-screen-sm{
    max-width: 576px;
  }

  .xl\:max-w-screen-md{
    max-width: 768px;
  }

  .xl\:max-w-screen-lg{
    max-width: 992px;
  }

  .xl\:max-w-screen-xl{
    max-width: 1200px;
  }

  .xl\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .xl\:max-w-screen-hd{
    max-width: 1920px;
  }

  .xl\:min-h-0{
    min-height: 0;
  }

  .xl\:min-h-full{
    min-height: 100%;
  }

  .xl\:min-h-screen{
    min-height: 100vh;
  }

  .xl\:min-w-0{
    min-width: 0;
  }

  .xl\:min-w-1{
    min-width: 0.25rem;
  }

  .xl\:min-w-2{
    min-width: 0.5rem;
  }

  .xl\:min-w-3{
    min-width: 0.75rem;
  }

  .xl\:min-w-4{
    min-width: 1rem;
  }

  .xl\:min-w-5{
    min-width: 1.25rem;
  }

  .xl\:min-w-6{
    min-width: 1.5rem;
  }

  .xl\:min-w-8{
    min-width: 2rem;
  }

  .xl\:min-w-10{
    min-width: 2.5rem;
  }

  .xl\:min-w-12{
    min-width: 3rem;
  }

  .xl\:min-w-14{
    min-width: 3.5rem;
  }

  .xl\:min-w-16{
    min-width: 4rem;
  }

  .xl\:min-w-20{
    min-width: 5rem;
  }

  .xl\:min-w-24{
    min-width: 6rem;
  }

  .xl\:min-w-32{
    min-width: 8rem;
  }

  .xl\:min-w-36{
    min-width: 9rem;
  }

  .xl\:min-w-40{
    min-width: 10rem;
  }

  .xl\:min-w-44{
    min-width: 11rem;
  }

  .xl\:min-w-48{
    min-width: 12rem;
  }

  .xl\:min-w-56{
    min-width: 14rem;
  }

  .xl\:min-w-64{
    min-width: 16rem;
  }

  .xl\:min-w-px{
    min-width: 1px;
  }

  .xl\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .xl\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .xl\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .xl\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .xl\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .xl\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .xl\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .xl\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .xl\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .xl\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .xl\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .xl\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .xl\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .xl\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .xl\:opacity-0{
    opacity: 0;
  }

  .xl\:opacity-25{
    opacity: 0.25;
  }

  .xl\:opacity-50{
    opacity: 0.5;
  }

  .xl\:opacity-75{
    opacity: 0.75;
  }

  .xl\:opacity-100{
    opacity: 1;
  }

  .xl\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .xl\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .xl\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .xl\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .xl\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .xl\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .xl\:overflow-auto{
    overflow: auto;
  }

  .xl\:overflow-hidden{
    overflow: hidden;
  }

  .xl\:overflow-visible{
    overflow: visible;
  }

  .xl\:overflow-scroll{
    overflow: scroll;
  }

  .xl\:overflow-x-auto{
    overflow-x: auto;
  }

  .xl\:overflow-y-auto{
    overflow-y: auto;
  }

  .xl\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .xl\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .xl\:overflow-x-visible{
    overflow-x: visible;
  }

  .xl\:overflow-y-visible{
    overflow-y: visible;
  }

  .xl\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .xl\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .xl\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .xl\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .xl\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .xl\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .xl\:overscroll-none{
    overscroll-behavior: none;
  }

  .xl\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .xl\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .xl\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .xl\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .xl\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .xl\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .xl\:p-0{
    padding: 0;
  }

  .xl\:p-1{
    padding: 0.25rem;
  }

  .xl\:p-2{
    padding: 0.5rem;
  }

  .xl\:p-3{
    padding: 0.75rem;
  }

  .xl\:p-4{
    padding: 1rem;
  }

  .xl\:p-5{
    padding: 1.25rem;
  }

  .xl\:p-6{
    padding: 1.5rem;
  }

  .xl\:p-8{
    padding: 2rem;
  }

  .xl\:p-10{
    padding: 2.5rem;
  }

  .xl\:p-12{
    padding: 3rem;
  }

  .xl\:p-14{
    padding: 3.5rem;
  }

  .xl\:p-16{
    padding: 4rem;
  }

  .xl\:p-20{
    padding: 5rem;
  }

  .xl\:p-21{
    padding: 5.25rem;
  }

  .xl\:p-24{
    padding: 6rem;
  }

  .xl\:p-32{
    padding: 8rem;
  }

  .xl\:p-36{
    padding: 9rem;
  }

  .xl\:p-40{
    padding: 10rem;
  }

  .xl\:p-44{
    padding: 11rem;
  }

  .xl\:p-48{
    padding: 12rem;
  }

  .xl\:p-56{
    padding: 14rem;
  }

  .xl\:p-64{
    padding: 16rem;
  }

  .xl\:p-px{
    padding: 1px;
  }

  .xl\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .xl\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .xl\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .xl\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xl\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .xl\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .xl\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .xl\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .xl\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xl\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xl\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xl\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xl\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .xl\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .xl\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xl\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:py-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .xl\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .xl\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xl\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xl\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xl\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xl\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xl\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xl\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xl\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xl\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xl\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xl\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xl\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xl\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xl\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xl\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xl\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xl\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .xl\:pt-0{
    padding-top: 0;
  }

  .xl\:pr-0{
    padding-right: 0;
  }

  .xl\:pb-0{
    padding-bottom: 0;
  }

  .xl\:pl-0{
    padding-left: 0;
  }

  .xl\:pt-1{
    padding-top: 0.25rem;
  }

  .xl\:pr-1{
    padding-right: 0.25rem;
  }

  .xl\:pb-1{
    padding-bottom: 0.25rem;
  }

  .xl\:pl-1{
    padding-left: 0.25rem;
  }

  .xl\:pt-2{
    padding-top: 0.5rem;
  }

  .xl\:pr-2{
    padding-right: 0.5rem;
  }

  .xl\:pb-2{
    padding-bottom: 0.5rem;
  }

  .xl\:pl-2{
    padding-left: 0.5rem;
  }

  .xl\:pt-3{
    padding-top: 0.75rem;
  }

  .xl\:pr-3{
    padding-right: 0.75rem;
  }

  .xl\:pb-3{
    padding-bottom: 0.75rem;
  }

  .xl\:pl-3{
    padding-left: 0.75rem;
  }

  .xl\:pt-4{
    padding-top: 1rem;
  }

  .xl\:pr-4{
    padding-right: 1rem;
  }

  .xl\:pb-4{
    padding-bottom: 1rem;
  }

  .xl\:pl-4{
    padding-left: 1rem;
  }

  .xl\:pt-5{
    padding-top: 1.25rem;
  }

  .xl\:pr-5{
    padding-right: 1.25rem;
  }

  .xl\:pb-5{
    padding-bottom: 1.25rem;
  }

  .xl\:pl-5{
    padding-left: 1.25rem;
  }

  .xl\:pt-6{
    padding-top: 1.5rem;
  }

  .xl\:pr-6{
    padding-right: 1.5rem;
  }

  .xl\:pb-6{
    padding-bottom: 1.5rem;
  }

  .xl\:pl-6{
    padding-left: 1.5rem;
  }

  .xl\:pt-8{
    padding-top: 2rem;
  }

  .xl\:pr-8{
    padding-right: 2rem;
  }

  .xl\:pb-8{
    padding-bottom: 2rem;
  }

  .xl\:pl-8{
    padding-left: 2rem;
  }

  .xl\:pt-10{
    padding-top: 2.5rem;
  }

  .xl\:pr-10{
    padding-right: 2.5rem;
  }

  .xl\:pb-10{
    padding-bottom: 2.5rem;
  }

  .xl\:pl-10{
    padding-left: 2.5rem;
  }

  .xl\:pt-12{
    padding-top: 3rem;
  }

  .xl\:pr-12{
    padding-right: 3rem;
  }

  .xl\:pb-12{
    padding-bottom: 3rem;
  }

  .xl\:pl-12{
    padding-left: 3rem;
  }

  .xl\:pt-14{
    padding-top: 3.5rem;
  }

  .xl\:pr-14{
    padding-right: 3.5rem;
  }

  .xl\:pb-14{
    padding-bottom: 3.5rem;
  }

  .xl\:pl-14{
    padding-left: 3.5rem;
  }

  .xl\:pt-16{
    padding-top: 4rem;
  }

  .xl\:pr-16{
    padding-right: 4rem;
  }

  .xl\:pb-16{
    padding-bottom: 4rem;
  }

  .xl\:pl-16{
    padding-left: 4rem;
  }

  .xl\:pt-20{
    padding-top: 5rem;
  }

  .xl\:pr-20{
    padding-right: 5rem;
  }

  .xl\:pb-20{
    padding-bottom: 5rem;
  }

  .xl\:pl-20{
    padding-left: 5rem;
  }

  .xl\:pt-21{
    padding-top: 5.25rem;
  }

  .xl\:pr-21{
    padding-right: 5.25rem;
  }

  .xl\:pb-21{
    padding-bottom: 5.25rem;
  }

  .xl\:pl-21{
    padding-left: 5.25rem;
  }

  .xl\:pt-24{
    padding-top: 6rem;
  }

  .xl\:pr-24{
    padding-right: 6rem;
  }

  .xl\:pb-24{
    padding-bottom: 6rem;
  }

  .xl\:pl-24{
    padding-left: 6rem;
  }

  .xl\:pt-32{
    padding-top: 8rem;
  }

  .xl\:pr-32{
    padding-right: 8rem;
  }

  .xl\:pb-32{
    padding-bottom: 8rem;
  }

  .xl\:pl-32{
    padding-left: 8rem;
  }

  .xl\:pt-36{
    padding-top: 9rem;
  }

  .xl\:pr-36{
    padding-right: 9rem;
  }

  .xl\:pb-36{
    padding-bottom: 9rem;
  }

  .xl\:pl-36{
    padding-left: 9rem;
  }

  .xl\:pt-40{
    padding-top: 10rem;
  }

  .xl\:pr-40{
    padding-right: 10rem;
  }

  .xl\:pb-40{
    padding-bottom: 10rem;
  }

  .xl\:pl-40{
    padding-left: 10rem;
  }

  .xl\:pt-44{
    padding-top: 11rem;
  }

  .xl\:pr-44{
    padding-right: 11rem;
  }

  .xl\:pb-44{
    padding-bottom: 11rem;
  }

  .xl\:pl-44{
    padding-left: 11rem;
  }

  .xl\:pt-48{
    padding-top: 12rem;
  }

  .xl\:pr-48{
    padding-right: 12rem;
  }

  .xl\:pb-48{
    padding-bottom: 12rem;
  }

  .xl\:pl-48{
    padding-left: 12rem;
  }

  .xl\:pt-56{
    padding-top: 14rem;
  }

  .xl\:pr-56{
    padding-right: 14rem;
  }

  .xl\:pb-56{
    padding-bottom: 14rem;
  }

  .xl\:pl-56{
    padding-left: 14rem;
  }

  .xl\:pt-64{
    padding-top: 16rem;
  }

  .xl\:pr-64{
    padding-right: 16rem;
  }

  .xl\:pb-64{
    padding-bottom: 16rem;
  }

  .xl\:pl-64{
    padding-left: 16rem;
  }

  .xl\:pt-px{
    padding-top: 1px;
  }

  .xl\:pr-px{
    padding-right: 1px;
  }

  .xl\:pb-px{
    padding-bottom: 1px;
  }

  .xl\:pl-px{
    padding-left: 1px;
  }

  .xl\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .xl\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .xl\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .xl\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .xl\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:placeholder-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .xl\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .xl\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color: transparent;
  }

  .xl\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .xl\:focus\:placeholder-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xl\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:placeholder-opacity-25::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:placeholder-opacity-50::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:placeholder-opacity-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .xl\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .xl\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .xl\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .xl\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xl\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

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

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

  .xl\:static{
    position: static;
  }

  .xl\:fixed{
    position: fixed;
  }

  .xl\:absolute{
    position: absolute;
  }

  .xl\:relative{
    position: relative;
  }

  .xl\:sticky{
    position: sticky;
  }

  .xl\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xl\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xl\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .xl\:inset-x-0{
    right: 0;
    left: 0;
  }

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

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

  .xl\:top-0{
    top: 0;
  }

  .xl\:right-0{
    right: 0;
  }

  .xl\:bottom-0{
    bottom: 0;
  }

  .xl\:left-0{
    left: 0;
  }

  .xl\:top-auto{
    top: auto;
  }

  .xl\:right-auto{
    right: auto;
  }

  .xl\:bottom-auto{
    bottom: auto;
  }

  .xl\:left-auto{
    left: auto;
  }

  .xl\:resize-none{
    resize: none;
  }

  .xl\:resize-y{
    resize: vertical;
  }

  .xl\:resize-x{
    resize: horizontal;
  }

  .xl\:resize{
    resize: both;
  }

  .xl\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xl\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xl\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xl\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xl\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xl\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xl\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xl\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xl\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xl\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xl\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xl\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xl\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xl\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xl\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xl\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xl\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xl\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xl\:fill-current{
    fill: currentColor;
  }

  .xl\:stroke-current{
    stroke: currentColor;
  }

  .xl\:stroke-0{
    stroke-width: 0;
  }

  .xl\:stroke-1{
    stroke-width: 1;
  }

  .xl\:stroke-2{
    stroke-width: 2;
  }

  .xl\:table-auto{
    table-layout: auto;
  }

  .xl\:table-fixed{
    table-layout: fixed;
  }

  .xl\:text-left{
    text-align: left;
  }

  .xl\:text-center{
    text-align: center;
  }

  .xl\:text-right{
    text-align: right;
  }

  .xl\:text-justify{
    text-align: justify;
  }

  .xl\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xl\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:text-transparent{
    color: transparent;
  }

  .xl\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xl\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xl\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xl\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xl\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xl\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xl\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xl\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xl\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xl\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xl\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xl\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xl\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xl\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xl\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xl\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xl\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xl\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xl\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xl\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xl\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xl\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xl\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xl\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xl\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xl\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xl\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xl\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xl\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xl\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xl\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xl\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:hover\:text-transparent:hover{
    color: transparent;
  }

  .xl\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xl\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xl\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xl\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xl\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xl\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xl\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xl\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xl\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xl\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xl\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xl\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xl\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xl\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xl\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xl\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xl\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xl\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xl\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xl\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xl\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xl\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xl\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xl\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xl\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xl\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:focus\:text-transparent:focus{
    color: transparent;
  }

  .xl\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xl\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xl\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xl\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xl\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xl\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xl\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xl\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xl\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xl\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xl\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xl\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xl\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xl\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xl\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xl\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xl\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xl\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xl\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:focus\:text-transparent:focus{
    color: transparent;
  }

  .xl\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xl\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xl\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xl\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xl\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xl\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xl\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xl\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xl\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xl\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xl\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xl\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xl\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xl\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xl\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xl\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xl\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xl\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xl\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xl\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xl\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xl\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .xl\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xl\:text-opacity-0{
    --text-opacity: 0;
  }

  .xl\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .xl\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .xl\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .xl\:text-opacity-100{
    --text-opacity: 1;
  }

  .xl\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .xl\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .xl\:hover\:text-opacity-50:hover{
    --text-opacity: 0.5;
  }

  .xl\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .xl\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .xl\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .xl\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .xl\:focus\:text-opacity-50:focus{
    --text-opacity: 0.5;
  }

  .xl\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .xl\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .xl\:italic{
    font-style: italic;
  }

  .xl\:not-italic{
    font-style: normal;
  }

  .xl\:uppercase{
    text-transform: uppercase;
  }

  .xl\:lowercase{
    text-transform: lowercase;
  }

  .xl\:capitalize{
    text-transform: capitalize;
  }

  .xl\:normal-case{
    text-transform: none;
  }

  .xl\:underline{
    text-decoration: underline;
  }

  .xl\:line-through{
    text-decoration: line-through;
  }

  .xl\:no-underline{
    text-decoration: none;
  }

  .xl\:hover\:underline:hover{
    text-decoration: underline;
  }

  .xl\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .xl\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .xl\:focus\:underline:focus{
    text-decoration: underline;
  }

  .xl\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .xl\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .xl\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\: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);
  }

  .xl\:normal-nums{
    font-variant-numeric: normal;
  }

  .xl\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .xl\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .xl\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .xl\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .xl\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .xl\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .xl\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .xl\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .xl\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .xl\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .xl\:tracking-normal{
    letter-spacing: 0;
  }

  .xl\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .xl\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .xl\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .xl\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xl\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xl\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .xl\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .xl\:align-baseline{
    vertical-align: baseline;
  }

  .xl\:align-top{
    vertical-align: top;
  }

  .xl\:align-middle{
    vertical-align: middle;
  }

  .xl\:align-bottom{
    vertical-align: bottom;
  }

  .xl\:align-text-top{
    vertical-align: text-top;
  }

  .xl\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .xl\:visible{
    visibility: visible;
  }

  .xl\:invisible{
    visibility: hidden;
  }

  .xl\:whitespace-normal{
    white-space: normal;
  }

  .xl\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .xl\:whitespace-pre{
    white-space: pre;
  }

  .xl\:whitespace-pre-line{
    white-space: pre-line;
  }

  .xl\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .xl\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .xl\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .xl\:break-all{
    word-break: break-all;
  }

  .xl\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xl\:w-0{
    width: 0;
  }

  .xl\:w-1{
    width: 0.25rem;
  }

  .xl\:w-2{
    width: 0.5rem;
  }

  .xl\:w-3{
    width: 0.75rem;
  }

  .xl\:w-4{
    width: 1rem;
  }

  .xl\:w-5{
    width: 1.25rem;
  }

  .xl\:w-6{
    width: 1.5rem;
  }

  .xl\:w-8{
    width: 2rem;
  }

  .xl\:w-10{
    width: 2.5rem;
  }

  .xl\:w-12{
    width: 3rem;
  }

  .xl\:w-14{
    width: 3.5rem;
  }

  .xl\:w-16{
    width: 4rem;
  }

  .xl\:w-20{
    width: 5rem;
  }

  .xl\:w-24{
    width: 6rem;
  }

  .xl\:w-32{
    width: 8rem;
  }

  .xl\:w-36{
    width: 9rem;
  }

  .xl\:w-40{
    width: 10rem;
  }

  .xl\:w-44{
    width: 11rem;
  }

  .xl\:w-48{
    width: 12rem;
  }

  .xl\:w-56{
    width: 14rem;
  }

  .xl\:w-64{
    width: 16rem;
  }

  .xl\:w-auto{
    width: auto;
  }

  .xl\:w-px{
    width: 1px;
  }

  .xl\:w-1\/2{
    width: 50%;
  }

  .xl\:w-1\/3{
    width: 33.333333%;
  }

  .xl\:w-2\/3{
    width: 66.666667%;
  }

  .xl\:w-1\/4{
    width: 25%;
  }

  .xl\:w-2\/4{
    width: 50%;
  }

  .xl\:w-3\/4{
    width: 75%;
  }

  .xl\:w-1\/5{
    width: 20%;
  }

  .xl\:w-2\/5{
    width: 40%;
  }

  .xl\:w-3\/5{
    width: 60%;
  }

  .xl\:w-4\/5{
    width: 80%;
  }

  .xl\:w-1\/6{
    width: 16.666667%;
  }

  .xl\:w-2\/6{
    width: 33.333333%;
  }

  .xl\:w-3\/6{
    width: 50%;
  }

  .xl\:w-4\/6{
    width: 66.666667%;
  }

  .xl\:w-5\/6{
    width: 83.333333%;
  }

  .xl\:w-1\/12{
    width: 8.333333%;
  }

  .xl\:w-2\/12{
    width: 16.666667%;
  }

  .xl\:w-3\/12{
    width: 25%;
  }

  .xl\:w-4\/12{
    width: 33.333333%;
  }

  .xl\:w-5\/12{
    width: 41.666667%;
  }

  .xl\:w-6\/12{
    width: 50%;
  }

  .xl\:w-7\/12{
    width: 58.333333%;
  }

  .xl\:w-8\/12{
    width: 66.666667%;
  }

  .xl\:w-9\/12{
    width: 75%;
  }

  .xl\:w-10\/12{
    width: 83.333333%;
  }

  .xl\:w-11\/12{
    width: 91.666667%;
  }

  .xl\:w-full{
    width: 100%;
  }

  .xl\:w-screen{
    width: 100vw;
  }

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

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

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

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

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

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

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

  .xl\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .xl\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .xl\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .xl\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .xl\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .xl\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .xl\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .xl\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .xl\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .xl\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .xl\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .xl\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .xl\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .xl\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .xl\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .xl\:gap-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .xl\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .xl\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .xl\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .xl\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .xl\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .xl\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .xl\:col-gap-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .xl\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .xl\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .xl\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .xl\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .xl\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .xl\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .xl\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .xl\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .xl\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .xl\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .xl\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .xl\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .xl\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .xl\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .xl\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .xl\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .xl\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .xl\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .xl\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .xl\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .xl\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .xl\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .xl\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .xl\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .xl\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .xl\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .xl\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .xl\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .xl\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .xl\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .xl\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .xl\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .xl\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .xl\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .xl\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .xl\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .xl\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .xl\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .xl\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .xl\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .xl\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .xl\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .xl\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .xl\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .xl\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .xl\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .xl\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .xl\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .xl\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .xl\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .xl\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .xl\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .xl\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .xl\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .xl\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .xl\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .xl\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .xl\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .xl\:row-gap-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .xl\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .xl\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .xl\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .xl\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .xl\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .xl\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .xl\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .xl\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .xl\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .xl\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .xl\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .xl\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .xl\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .xl\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .xl\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .xl\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .xl\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .xl\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .xl\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .xl\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .xl\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .xl\:gap-y-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .xl\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .xl\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .xl\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .xl\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .xl\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .xl\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .xl\:grid-flow-row{
    grid-auto-flow: row;
  }

  .xl\:grid-flow-col{
    grid-auto-flow: column;
  }

  .xl\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .xl\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .xl\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xl\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xl\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xl\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xl\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xl\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xl\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xl\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xl\:grid-cols-none{
    grid-template-columns: none;
  }

  .xl\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .xl\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .xl\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .xl\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:col-start-1{
    grid-column-start: 1;
  }

  .xl\:col-start-2{
    grid-column-start: 2;
  }

  .xl\:col-start-3{
    grid-column-start: 3;
  }

  .xl\:col-start-4{
    grid-column-start: 4;
  }

  .xl\:col-start-5{
    grid-column-start: 5;
  }

  .xl\:col-start-6{
    grid-column-start: 6;
  }

  .xl\:col-start-7{
    grid-column-start: 7;
  }

  .xl\:col-start-8{
    grid-column-start: 8;
  }

  .xl\:col-start-9{
    grid-column-start: 9;
  }

  .xl\:col-start-10{
    grid-column-start: 10;
  }

  .xl\:col-start-11{
    grid-column-start: 11;
  }

  .xl\:col-start-12{
    grid-column-start: 12;
  }

  .xl\:col-start-13{
    grid-column-start: 13;
  }

  .xl\:col-start-auto{
    grid-column-start: auto;
  }

  .xl\:col-end-1{
    grid-column-end: 1;
  }

  .xl\:col-end-2{
    grid-column-end: 2;
  }

  .xl\:col-end-3{
    grid-column-end: 3;
  }

  .xl\:col-end-4{
    grid-column-end: 4;
  }

  .xl\:col-end-5{
    grid-column-end: 5;
  }

  .xl\:col-end-6{
    grid-column-end: 6;
  }

  .xl\:col-end-7{
    grid-column-end: 7;
  }

  .xl\:col-end-8{
    grid-column-end: 8;
  }

  .xl\:col-end-9{
    grid-column-end: 9;
  }

  .xl\:col-end-10{
    grid-column-end: 10;
  }

  .xl\:col-end-11{
    grid-column-end: 11;
  }

  .xl\:col-end-12{
    grid-column-end: 12;
  }

  .xl\:col-end-13{
    grid-column-end: 13;
  }

  .xl\:col-end-auto{
    grid-column-end: auto;
  }

  .xl\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .xl\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .xl\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .xl\:grid-rows-none{
    grid-template-rows: none;
  }

  .xl\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .xl\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .xl\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .xl\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .xl\:row-auto{
    grid-row: auto;
  }

  .xl\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .xl\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .xl\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .xl\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .xl\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .xl\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .xl\:row-span-full{
    grid-row: 1 / -1;
  }

  .xl\:row-start-1{
    grid-row-start: 1;
  }

  .xl\:row-start-2{
    grid-row-start: 2;
  }

  .xl\:row-start-3{
    grid-row-start: 3;
  }

  .xl\:row-start-4{
    grid-row-start: 4;
  }

  .xl\:row-start-5{
    grid-row-start: 5;
  }

  .xl\:row-start-6{
    grid-row-start: 6;
  }

  .xl\:row-start-7{
    grid-row-start: 7;
  }

  .xl\:row-start-auto{
    grid-row-start: auto;
  }

  .xl\:row-end-1{
    grid-row-end: 1;
  }

  .xl\:row-end-2{
    grid-row-end: 2;
  }

  .xl\:row-end-3{
    grid-row-end: 3;
  }

  .xl\:row-end-4{
    grid-row-end: 4;
  }

  .xl\:row-end-5{
    grid-row-end: 5;
  }

  .xl\:row-end-6{
    grid-row-end: 6;
  }

  .xl\:row-end-7{
    grid-row-end: 7;
  }

  .xl\:row-end-auto{
    grid-row-end: auto;
  }

  .xl\: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;
    -webkit-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: 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));
  }

  .xl\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .xl\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .xl\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .xl\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .xl\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .xl\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .xl\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .xl\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .xl\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .xl\:origin-top-left{
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }

  .xl\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xl\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xl\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xl\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xl\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xl\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xl\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xl\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xl\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xl\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xl\:scale-x-0{
    --transform-scale-x: 0;
  }

  .xl\:scale-x-50{
    --transform-scale-x: .5;
  }

  .xl\:scale-x-75{
    --transform-scale-x: .75;
  }

  .xl\:scale-x-90{
    --transform-scale-x: .9;
  }

  .xl\:scale-x-95{
    --transform-scale-x: .95;
  }

  .xl\:scale-x-100{
    --transform-scale-x: 1;
  }

  .xl\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .xl\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .xl\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .xl\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .xl\:scale-y-0{
    --transform-scale-y: 0;
  }

  .xl\:scale-y-50{
    --transform-scale-y: .5;
  }

  .xl\:scale-y-75{
    --transform-scale-y: .75;
  }

  .xl\:scale-y-90{
    --transform-scale-y: .9;
  }

  .xl\:scale-y-95{
    --transform-scale-y: .95;
  }

  .xl\:scale-y-100{
    --transform-scale-y: 1;
  }

  .xl\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .xl\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .xl\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .xl\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .xl\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xl\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xl\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xl\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xl\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xl\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xl\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xl\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xl\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xl\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xl\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .xl\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .xl\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .xl\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .xl\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .xl\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .xl\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .xl\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .xl\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .xl\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .xl\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .xl\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .xl\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .xl\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .xl\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .xl\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .xl\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .xl\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .xl\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .xl\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .xl\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xl\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xl\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xl\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xl\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xl\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xl\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xl\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xl\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xl\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xl\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .xl\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .xl\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .xl\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .xl\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .xl\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .xl\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .xl\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .xl\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .xl\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .xl\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .xl\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .xl\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .xl\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .xl\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .xl\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .xl\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .xl\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .xl\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .xl\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .xl\:rotate-0{
    --transform-rotate: 0;
  }

  .xl\:rotate-1{
    --transform-rotate: 1deg;
  }

  .xl\:rotate-2{
    --transform-rotate: 2deg;
  }

  .xl\:rotate-3{
    --transform-rotate: 3deg;
  }

  .xl\:rotate-6{
    --transform-rotate: 6deg;
  }

  .xl\:rotate-12{
    --transform-rotate: 12deg;
  }

  .xl\:rotate-45{
    --transform-rotate: 45deg;
  }

  .xl\:rotate-90{
    --transform-rotate: 90deg;
  }

  .xl\:rotate-180{
    --transform-rotate: 180deg;
  }

  .xl\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .xl\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .xl\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .xl\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .xl\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .xl\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .xl\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .xl\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .xl\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .xl\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .xl\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .xl\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .xl\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .xl\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .xl\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .xl\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .xl\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .xl\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .xl\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .xl\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .xl\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .xl\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .xl\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .xl\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .xl\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .xl\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .xl\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .xl\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .xl\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .xl\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .xl\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .xl\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .xl\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .xl\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .xl\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .xl\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .xl\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .xl\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .xl\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .xl\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .xl\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .xl\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .xl\:translate-x-0{
    --transform-translate-x: 0;
  }

  .xl\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .xl\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .xl\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .xl\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .xl\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .xl\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .xl\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .xl\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .xl\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .xl\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .xl\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .xl\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .xl\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .xl\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .xl\:translate-x-36{
    --transform-translate-x: 9rem;
  }

  .xl\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .xl\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .xl\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .xl\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .xl\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .xl\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .xl\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .xl\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .xl\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .xl\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .xl\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .xl\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .xl\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .xl\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .xl\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .xl\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .xl\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .xl\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .xl\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .xl\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .xl\:-translate-x-36{
    --transform-translate-x: -9rem;
  }

  .xl\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .xl\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .xl\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .xl\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .xl\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .xl\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .xl\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .xl\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .xl\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .xl\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .xl\:translate-y-0{
    --transform-translate-y: 0;
  }

  .xl\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .xl\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .xl\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .xl\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .xl\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .xl\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .xl\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .xl\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .xl\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .xl\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .xl\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .xl\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .xl\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .xl\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .xl\:translate-y-36{
    --transform-translate-y: 9rem;
  }

  .xl\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .xl\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .xl\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .xl\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .xl\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .xl\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .xl\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .xl\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .xl\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .xl\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .xl\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .xl\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .xl\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .xl\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .xl\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .xl\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .xl\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .xl\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .xl\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .xl\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .xl\:-translate-y-36{
    --transform-translate-y: -9rem;
  }

  .xl\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .xl\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .xl\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .xl\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .xl\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .xl\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .xl\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .xl\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .xl\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .xl\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .xl\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .xl\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .xl\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .xl\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .xl\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .xl\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .xl\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .xl\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .xl\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .xl\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .xl\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .xl\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .xl\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .xl\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .xl\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .xl\:hover\:translate-x-36:hover{
    --transform-translate-x: 9rem;
  }

  .xl\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .xl\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .xl\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .xl\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .xl\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .xl\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .xl\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .xl\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .xl\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .xl\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .xl\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .xl\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .xl\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .xl\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .xl\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .xl\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .xl\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .xl\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .xl\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .xl\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .xl\:hover\:-translate-x-36:hover{
    --transform-translate-x: -9rem;
  }

  .xl\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .xl\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .xl\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .xl\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .xl\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .xl\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .xl\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .xl\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .xl\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .xl\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .xl\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .xl\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .xl\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .xl\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .xl\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .xl\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .xl\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .xl\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .xl\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .xl\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .xl\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .xl\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .xl\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .xl\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .xl\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .xl\:hover\:translate-y-36:hover{
    --transform-translate-y: 9rem;
  }

  .xl\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .xl\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .xl\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .xl\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .xl\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .xl\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .xl\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .xl\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .xl\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .xl\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .xl\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .xl\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .xl\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .xl\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .xl\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .xl\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .xl\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .xl\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .xl\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .xl\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .xl\:hover\:-translate-y-36:hover{
    --transform-translate-y: -9rem;
  }

  .xl\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .xl\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .xl\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .xl\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .xl\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .xl\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .xl\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .xl\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .xl\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .xl\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .xl\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .xl\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .xl\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .xl\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .xl\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .xl\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .xl\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .xl\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .xl\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .xl\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .xl\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .xl\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .xl\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .xl\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .xl\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .xl\:focus\:translate-x-36:focus{
    --transform-translate-x: 9rem;
  }

  .xl\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .xl\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .xl\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .xl\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .xl\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .xl\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .xl\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .xl\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .xl\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .xl\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .xl\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .xl\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .xl\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .xl\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .xl\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .xl\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .xl\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .xl\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .xl\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .xl\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .xl\:focus\:-translate-x-36:focus{
    --transform-translate-x: -9rem;
  }

  .xl\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .xl\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .xl\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .xl\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .xl\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .xl\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .xl\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .xl\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .xl\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .xl\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .xl\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .xl\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .xl\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .xl\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .xl\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .xl\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .xl\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .xl\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .xl\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .xl\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .xl\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .xl\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .xl\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .xl\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .xl\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .xl\:focus\:translate-y-36:focus{
    --transform-translate-y: 9rem;
  }

  .xl\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .xl\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .xl\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .xl\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .xl\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .xl\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .xl\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .xl\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .xl\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .xl\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .xl\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .xl\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .xl\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .xl\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .xl\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .xl\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .xl\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .xl\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .xl\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .xl\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .xl\:focus\:-translate-y-36:focus{
    --transform-translate-y: -9rem;
  }

  .xl\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .xl\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .xl\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .xl\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .xl\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .xl\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .xl\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .xl\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .xl\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .xl\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .xl\:skew-x-0{
    --transform-skew-x: 0;
  }

  .xl\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .xl\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .xl\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .xl\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .xl\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .xl\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .xl\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .xl\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .xl\:-skew-x-2{
    --transform-skew-x: -2deg;
  }

  .xl\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .xl\:skew-y-0{
    --transform-skew-y: 0;
  }

  .xl\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .xl\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .xl\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .xl\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .xl\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .xl\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .xl\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .xl\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .xl\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .xl\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .xl\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .xl\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .xl\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .xl\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .xl\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .xl\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .xl\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .xl\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .xl\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .xl\:hover\:-skew-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .xl\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .xl\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .xl\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .xl\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .xl\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .xl\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .xl\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .xl\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .xl\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .xl\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .xl\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .xl\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .xl\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .xl\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .xl\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .xl\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .xl\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .xl\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .xl\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .xl\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .xl\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .xl\:focus\:-skew-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .xl\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .xl\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .xl\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .xl\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .xl\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .xl\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .xl\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .xl\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .xl\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .xl\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .xl\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .xl\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .xl\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .xl\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .xl\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .xl\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .xl\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .xl\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .xl\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .xl\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .xl\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .xl\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .xl\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .xl\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .xl\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .xl\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .xl\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .xl\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .xl\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .xl\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .xl\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .xl\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .xl\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .xl\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .xl\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .xl\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .xl\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .xl\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .xl\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .xl\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .xl\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .xl\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .xl\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .xl\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .xl\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xl\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .xl\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .xl\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .xl\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .xl\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .xl\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .xl\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .xl\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .xl\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .xl\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .xl\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .xl\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .xl\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .xl\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .xl\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .xl\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .xl\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .xl\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .xl\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .xl\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .xl\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .xl\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .xl\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .xl\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .xl\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .xl\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .xl\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .xl\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .xl\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .xl\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .xl\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .xl\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .xl\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .xl\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .xl\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .xl\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .xl\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .xl\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .xl\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .xl\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .xl\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .xl\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .xl\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .xl\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .xl\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .xl\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .xl\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .xl\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .xl\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .xl\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .xl\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .xl\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .xl\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .xl\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .xl\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .xl\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .xl\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .xl\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .xl\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .xl\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .xl\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .xl\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .xl\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .xl\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .xl\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xl\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xl\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xl\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .xl\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .xl\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .xl\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .xl\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .xl\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .xl\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .xl\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .xl\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .xl\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .xl\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .xl\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .xl\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .xl\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .xl\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .xl\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .xl\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .xl\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .xl\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .xl\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .xl\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .xl\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .xl\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .xl\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .xl\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .xl\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .xl\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .xl\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .xl\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xl\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xl\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xl\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xl\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xl\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xl\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .xl\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xl\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .xl\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .xl\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .xl\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .xl\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .xl\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .xl\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .xl\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .xl\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .xl\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .xl\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .xl\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .xl\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .xl\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .xl\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .xl\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .xl\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .xl\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .xl\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .xl\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .xl\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .xl\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .xl\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .xl\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .xl\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .xl\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .xl\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .xl\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .xl\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .xl\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .xl\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .xl\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .xl\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .xl\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .xl\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .xl\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .xl\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .xl\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .xl\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .xl\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .xl\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .xl\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .xl\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .xl\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .xl\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .xl\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .xl\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .xl\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .xl\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .xl\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .xl\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .xl\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .xl\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .xl\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .xl\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .xl\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .xl\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .xl\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .xl\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .xl\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .xl\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .xl\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .xl\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .xl\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .xl\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xl\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xl\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xl\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .xl\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .xl\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .xl\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .xl\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .xl\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .xl\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .xl\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .xl\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .xl\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .xl\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .xl\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .xl\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .xl\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .xl\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .xl\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .xl\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .xl\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .xl\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .xl\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .xl\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .xl\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .xl\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .xl\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .xl\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .xl\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .xl\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .xl\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .xl\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xl\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xl\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xl\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xl\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xl\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xl\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .xl\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xl\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .xl\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .xl\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .xl\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .xl\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .xl\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .xl\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .xl\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .xl\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .xl\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .xl\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .xl\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .xl\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .xl\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .xl\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .xl\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .xl\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .xl\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .xl\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .xl\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .xl\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .xl\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .xl\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .xl\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .xl\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .xl\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .xl\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .xl\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .xl\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .xl\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .xl\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .xl\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .xl\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .xl\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .xl\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .xl\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .xl\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .xl\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .xl\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .xl\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .xl\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .xl\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .xl\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .xl\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .xl\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .xl\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .xl\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .xl\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .xl\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .xl\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .xl\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .xl\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .xl\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .xl\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .xl\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .xl\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .xl\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .xl\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .xl\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .xl\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .xl\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .xl\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .xl\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .xl\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .xl\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xl\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xl\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xl\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .xl\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .xl\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .xl\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .xl\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .xl\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .xl\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .xl\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .xl\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .xl\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .xl\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .xl\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .xl\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .xl\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .xl\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .xl\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .xl\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .xl\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .xl\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .xl\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .xl\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .xl\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .xl\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .xl\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .xl\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .xl\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .xl\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .xl\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .xl\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xl\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xl\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xl\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xl\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xl\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xl\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .xl\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xl\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .xl\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .xl\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .xl\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .xl\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .xl\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .xl\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .xl\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .xl\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .xl\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .xl\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .xl\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .xl\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .xl\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .xl\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .xl\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .xl\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .xl\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .xl\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .xl\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .xl\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .xl\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .xl\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .xl\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .xl\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .xl\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .xl\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .xl\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .xl\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .xl\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .xl\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .xl\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .xl\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .xl\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .xl\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .xl\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .xl\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .xl\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .xl\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .xl\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .xl\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .xl\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .xl\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .xl\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .xl\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .xl\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .xl\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .xl\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .xl\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .xl\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .xl\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .xl\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .xl\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .xl\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .xl\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .xl\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .xl\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .xl\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .xl\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .xl\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .xl\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .xl\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .xl\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .xl\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .xl\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xl\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xl\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xl\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .xl\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .xl\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .xl\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .xl\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .xl\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .xl\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .xl\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .xl\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .xl\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .xl\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .xl\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .xl\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .xl\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .xl\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .xl\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .xl\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .xl\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .xl\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .xl\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .xl\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .xl\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .xl\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .xl\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .xl\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .xl\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .xl\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .xl\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .xl\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xl\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xl\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xl\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xl\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xl\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xl\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .xl\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xl\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .xl\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .xl\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .xl\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .xl\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .xl\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .xl\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .xl\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .xl\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .xl\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .xl\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .xl\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .xl\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .xl\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .xl\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .xl\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .xl\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .xl\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .xl\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .xl\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .xl\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .xl\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .xl\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .xl\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .xl\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .xl\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .xl\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .xl\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .xl\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .xl\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .xl\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .xl\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .xl\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .xl\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .xl\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .xl\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .xl\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .xl\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .xl\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .xl\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .xl\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .xl\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .xl\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .xl\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .xl\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .xl\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .xl\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .xl\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .xl\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .xl\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .xl\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .xl\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .xl\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .xl\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .xl\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .xl\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .xl\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .xl\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .xl\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .xl\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .xl\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .xl\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .xl\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .xl\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .xl\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xl\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xl\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xl\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .xl\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .xl\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .xl\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .xl\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .xl\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .xl\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .xl\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .xl\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .xl\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .xl\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .xl\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .xl\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .xl\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .xl\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .xl\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .xl\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .xl\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .xl\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .xl\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .xl\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .xl\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .xl\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .xl\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .xl\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .xl\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .xl\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .xl\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .xl\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xl\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xl\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xl\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xl\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xl\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xl\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .xl\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xl\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .xl\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .xl\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .xl\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .xl\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .xl\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .xl\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .xl\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .xl\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .xl\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .xl\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .xl\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .xl\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .xl\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .xl\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .xl\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .xl\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .xl\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .xl\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .xl\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .xl\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .xl\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .xl\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .xl\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .xl\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .xl\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .xl\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .xl\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .xl\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .xl\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .xl\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .xl\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .xl\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .xl\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .xl\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .xl\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .xl\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .xl\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .xl\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .xl\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .xl\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .xl\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .xl\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .xl\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .xl\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .xl\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .xl\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .xl\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .xl\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .xl\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .xl\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .xl\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .xl\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .xl\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .xl\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .xl\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .xl\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .xl\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .xl\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .xl\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .xl\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .xl\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .xl\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .xl\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .xl\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xl\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xl\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xl\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .xl\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .xl\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .xl\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .xl\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .xl\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .xl\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .xl\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .xl\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .xl\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .xl\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .xl\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .xl\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .xl\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .xl\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .xl\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .xl\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .xl\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .xl\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .xl\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .xl\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .xl\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .xl\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .xl\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .xl\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .xl\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .xl\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .xl\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .xl\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xl\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xl\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xl\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xl\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xl\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xl\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .xl\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xl\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .xl\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .xl\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .xl\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .xl\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .xl\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .xl\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .xl\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .xl\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .xl\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .xl\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .xl\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .xl\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .xl\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .xl\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .xl\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .xl\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .xl\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .xl\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .xl\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .xl\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .xl\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .xl\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .xl\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .xl\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .xl\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .xl\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .xl\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .xl\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .xl\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .xl\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .xl\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .xl\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .xl\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .xl\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .xl\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .xl\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .xl\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .xl\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .xl\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .xl\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .xl\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .xl\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .xl\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .xl\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .xl\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .xl\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .xl\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .xl\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .xl\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .xl\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .xl\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .xl\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .xl\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .xl\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .xl\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .xl\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .xl\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .xl\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .xl\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .xl\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .xl\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .xl\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .xl\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .xl\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xl\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xl\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xl\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .xl\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .xl\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .xl\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .xl\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .xl\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .xl\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .xl\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .xl\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .xl\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .xl\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .xl\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .xl\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .xl\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .xl\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .xl\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .xl\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .xl\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .xl\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .xl\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .xl\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .xl\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .xl\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .xl\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .xl\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .xl\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .xl\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .xl\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .xl\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xl\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xl\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xl\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xl\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xl\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xl\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xl\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xl\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xl\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xl\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .xl\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .xl\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .xl\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .xl\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .xl\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .xl\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xl\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .xl\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .xl\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .xl\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .xl\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .xl\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .xl\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .xl\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .xl\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .xl\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .xl\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .xl\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .xl\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xl\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xl\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .xl\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xl\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xl\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .xl\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .xl\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .xl\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .xl\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .xl\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .xl\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .xl\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .xl\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .xl\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .xl\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .xl\:container{
      max-width: 576px;
    }
  }

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

  @media (min-width: 992px){
    .xl\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .xl\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .xl\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .xl\:container{
      max-width: 1920px;
    }
  }
}

@media (min-width: 1472px){
  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

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

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

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\:space-y-44 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(11rem * var(--space-y-reverse));
  }

  .xxl\:space-x-44 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(11rem * var(--space-x-reverse));
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-space-y-36 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-9rem * var(--space-y-reverse));
  }

  .xxl\:-space-x-36 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-9rem * var(--space-x-reverse));
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-space-y-44 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-11rem * var(--space-y-reverse));
  }

  .xxl\:-space-x-44 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-11rem * var(--space-x-reverse));
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:-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));
  }

  .xxl\:-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)));
  }

  .xxl\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .xxl\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\: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));
  }

  .xxl\: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)));
  }

  .xxl\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .xxl\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .xxl\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .xxl\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .xxl\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .xxl\:divide-transparent > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .xxl\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .xxl\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .xxl\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .xxl\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .xxl\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .xxl\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .xxl\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .xxl\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--divide-opacity));
  }

  .xxl\:divide-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .xxl\:divide-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .xxl\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .xxl\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .xxl\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .xxl\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .xxl\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .xxl\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .xxl\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .xxl\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .xxl\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .xxl\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .xxl\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .xxl\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .xxl\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .xxl\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .xxl\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .xxl\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .xxl\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .xxl\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .xxl\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .xxl\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .xxl\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .xxl\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .xxl\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .xxl\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--divide-opacity));
  }

  .xxl\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .xxl\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .xxl\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .xxl\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .xxl\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .xxl\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .xxl\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .xxl\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: 0.5;
  }

  .xxl\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .xxl\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .xxl\: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;
  }

  .xxl\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .xxl\: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;
  }

  .xxl\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .xxl\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xxl\:bg-fixed{
    background-attachment: fixed;
  }

  .xxl\:bg-local{
    background-attachment: local;
  }

  .xxl\:bg-scroll{
    background-attachment: scroll;
  }

  .xxl\:bg-clip-border{
    background-clip: border-box;
  }

  .xxl\:bg-clip-padding{
    background-clip: padding-box;
  }

  .xxl\:bg-clip-content{
    background-clip: content-box;
  }

  .xxl\:bg-clip-text{
    background-clip: text;
  }

  .xxl\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xxl\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:bg-transparent{
    background-color: transparent;
  }

  .xxl\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xxl\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xxl\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xxl\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xxl\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xxl\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xxl\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xxl\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xxl\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xxl\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xxl\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xxl\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xxl\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xxl\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xxl\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xxl\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xxl\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xxl\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xxl\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xxl\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xxl\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xxl\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xxl\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xxl\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xxl\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xxl\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xxl\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xxl\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xxl\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xxl\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xxl\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xxl\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .xxl\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xxl\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xxl\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xxl\:hover\:bg-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xxl\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xxl\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xxl\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xxl\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xxl\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xxl\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xxl\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xxl\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .xxl\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xxl\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xxl\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xxl\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xxl\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xxl\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xxl\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .xxl\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .xxl\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .xxl\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .xxl\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .xxl\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .xxl\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .xxl\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .xxl\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .xxl\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .xxl\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .xxl\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .xxl\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .xxl\:bg-none{
    background-image: none;
  }

  .xxl\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .xxl\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .xxl\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xxl\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xxl\:from-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xxl\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xxl\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xxl\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xxl\:from-white{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xxl\:from-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xxl\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xxl\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xxl\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xxl\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xxl\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xxl\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xxl\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xxl\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xxl\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xxl\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xxl\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xxl\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xxl\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xxl\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xxl\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xxl\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xxl\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xxl\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xxl\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xxl\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xxl\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xxl\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xxl\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xxl\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xxl\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xxl\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\: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));
  }

  .xxl\:via-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xxl\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xxl\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xxl\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xxl\: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));
  }

  .xxl\:via-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xxl\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xxl\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xxl\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xxl\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xxl\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xxl\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xxl\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xxl\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xxl\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xxl\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xxl\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xxl\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xxl\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xxl\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xxl\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xxl\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xxl\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xxl\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xxl\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xxl\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xxl\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xxl\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xxl\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xxl\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xxl\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .xxl\:to-form{
    --gradient-to-color: #79828B;
  }

  .xxl\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .xxl\:to-transparent{
    --gradient-to-color: transparent;
  }

  .xxl\:to-black{
    --gradient-to-color: #212529;
  }

  .xxl\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .xxl\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .xxl\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .xxl\:to-grey{
    --gradient-to-color: #79828B;
  }

  .xxl\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .xxl\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .xxl\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .xxl\:to-white{
    --gradient-to-color: #ffffff;
  }

  .xxl\:to-red{
    --gradient-to-color: #D31A08;
  }

  .xxl\:to-green{
    --gradient-to-color: #66BB08;
  }

  .xxl\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .xxl\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .xxl\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .xxl\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .xxl\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .xxl\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .xxl\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .xxl\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .xxl\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .xxl\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .xxl\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .xxl\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .xxl\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .xxl\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .xxl\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .xxl\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .xxl\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .xxl\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .xxl\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .xxl\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .xxl\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .xxl\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .xxl\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .xxl\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xxl\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xxl\:hover\:from-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xxl\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xxl\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xxl\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xxl\:hover\:from-white:hover{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xxl\:hover\:from-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xxl\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xxl\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xxl\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xxl\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xxl\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xxl\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xxl\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xxl\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xxl\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xxl\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xxl\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xxl\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xxl\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xxl\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xxl\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xxl\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xxl\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xxl\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xxl\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xxl\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xxl\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xxl\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xxl\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xxl\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xxl\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xxl\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\: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));
  }

  .xxl\:hover\:via-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xxl\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xxl\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xxl\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xxl\: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));
  }

  .xxl\:hover\:via-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xxl\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xxl\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xxl\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xxl\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xxl\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xxl\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xxl\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xxl\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xxl\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xxl\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xxl\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xxl\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xxl\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xxl\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xxl\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xxl\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xxl\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xxl\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xxl\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xxl\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xxl\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xxl\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xxl\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xxl\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xxl\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .xxl\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .xxl\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .xxl\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .xxl\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .xxl\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .xxl\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .xxl\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .xxl\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .xxl\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .xxl\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .xxl\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .xxl\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .xxl\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .xxl\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .xxl\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .xxl\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .xxl\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .xxl\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .xxl\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .xxl\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .xxl\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .xxl\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .xxl\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .xxl\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .xxl\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .xxl\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .xxl\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .xxl\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .xxl\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .xxl\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .xxl\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .xxl\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .xxl\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .xxl\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .xxl\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .xxl\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .xxl\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .xxl\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xxl\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .xxl\:focus\:from-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xxl\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xxl\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xxl\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xxl\:focus\:from-white:focus{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .xxl\:focus\:from-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xxl\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xxl\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xxl\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xxl\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xxl\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xxl\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xxl\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xxl\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xxl\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xxl\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xxl\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xxl\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xxl\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xxl\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xxl\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xxl\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xxl\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xxl\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xxl\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xxl\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xxl\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xxl\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xxl\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xxl\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xxl\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .xxl\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\: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));
  }

  .xxl\:focus\:via-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .xxl\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .xxl\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .xxl\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .xxl\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .xxl\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .xxl\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .xxl\: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));
  }

  .xxl\:focus\:via-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .xxl\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .xxl\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .xxl\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .xxl\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .xxl\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .xxl\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .xxl\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .xxl\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .xxl\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .xxl\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .xxl\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .xxl\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .xxl\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .xxl\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .xxl\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .xxl\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .xxl\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .xxl\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .xxl\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .xxl\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .xxl\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .xxl\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .xxl\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .xxl\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .xxl\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .xxl\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .xxl\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .xxl\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .xxl\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .xxl\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .xxl\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .xxl\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .xxl\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .xxl\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .xxl\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .xxl\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .xxl\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .xxl\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .xxl\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .xxl\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .xxl\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .xxl\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .xxl\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .xxl\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .xxl\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .xxl\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .xxl\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .xxl\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .xxl\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .xxl\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .xxl\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .xxl\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .xxl\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .xxl\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .xxl\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .xxl\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .xxl\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .xxl\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .xxl\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .xxl\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .xxl\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .xxl\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .xxl\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .xxl\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .xxl\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .xxl\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .xxl\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .xxl\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .xxl\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .xxl\:hover\:bg-opacity-50:hover{
    --bg-opacity: 0.5;
  }

  .xxl\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .xxl\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .xxl\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .xxl\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .xxl\:focus\:bg-opacity-50:focus{
    --bg-opacity: 0.5;
  }

  .xxl\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .xxl\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .xxl\:bg-bottom{
    background-position: bottom;
  }

  .xxl\:bg-center{
    background-position: center;
  }

  .xxl\:bg-left{
    background-position: left;
  }

  .xxl\:bg-left-bottom{
    background-position: left bottom;
  }

  .xxl\:bg-left-top{
    background-position: left top;
  }

  .xxl\:bg-right{
    background-position: right;
  }

  .xxl\:bg-right-bottom{
    background-position: right bottom;
  }

  .xxl\:bg-right-top{
    background-position: right top;
  }

  .xxl\:bg-top{
    background-position: top;
  }

  .xxl\:bg-repeat{
    background-repeat: repeat;
  }

  .xxl\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .xxl\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .xxl\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .xxl\:bg-repeat-round{
    background-repeat: round;
  }

  .xxl\:bg-repeat-space{
    background-repeat: space;
  }

  .xxl\:bg-auto{
    background-size: auto;
  }

  .xxl\:bg-cover{
    background-size: cover;
  }

  .xxl\:bg-contain{
    background-size: contain;
  }

  .xxl\:border-collapse{
    border-collapse: collapse;
  }

  .xxl\:border-separate{
    border-collapse: separate;
  }

  .xxl\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xxl\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:border-transparent{
    border-color: transparent;
  }

  .xxl\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xxl\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xxl\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xxl\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xxl\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xxl\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xxl\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xxl\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xxl\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xxl\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xxl\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xxl\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xxl\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xxl\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xxl\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xxl\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xxl\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xxl\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xxl\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xxl\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xxl\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xxl\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xxl\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xxl\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xxl\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xxl\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xxl\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xxl\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xxl\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xxl\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xxl\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xxl\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .xxl\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xxl\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xxl\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xxl\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xxl\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xxl\:hover\:border-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xxl\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xxl\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xxl\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xxl\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xxl\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xxl\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xxl\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xxl\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xxl\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xxl\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xxl\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xxl\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xxl\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xxl\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .xxl\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xxl\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xxl\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xxl\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xxl\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xxl\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xxl\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xxl\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .xxl\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .xxl\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .xxl\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .xxl\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .xxl\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .xxl\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .xxl\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .xxl\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .xxl\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .xxl\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .xxl\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .xxl\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .xxl\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .xxl\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .xxl\:border-opacity-0{
    --border-opacity: 0;
  }

  .xxl\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .xxl\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .xxl\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .xxl\:border-opacity-100{
    --border-opacity: 1;
  }

  .xxl\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .xxl\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .xxl\:hover\:border-opacity-50:hover{
    --border-opacity: 0.5;
  }

  .xxl\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .xxl\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .xxl\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .xxl\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .xxl\:focus\:border-opacity-50:focus{
    --border-opacity: 0.5;
  }

  .xxl\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .xxl\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .xxl\:rounded-none{
    border-radius: 0;
  }

  .xxl\:rounded-xs{
    border-radius: 0.061rem;
  }

  .xxl\:rounded-sm{
    border-radius: 0.125rem;
  }

  .xxl\:rounded{
    border-radius: 0.25rem;
  }

  .xxl\:rounded-lg{
    border-radius: 0.5rem;
  }

  .xxl\:rounded-full{
    border-radius: 9999px;
  }

  .xxl\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xxl\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xxl\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xxl\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xxl\:rounded-t-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .xxl\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .xxl\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .xxl\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .xxl\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .xxl\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .xxl\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .xxl\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .xxl\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .xxl\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .xxl\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .xxl\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .xxl\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .xxl\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .xxl\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .xxl\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .xxl\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xxl\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xxl\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xxl\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xxl\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .xxl\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .xxl\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .xxl\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .xxl\:rounded-tl-xs{
    border-top-left-radius: 0.061rem;
  }

  .xxl\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .xxl\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .xxl\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .xxl\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .xxl\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .xxl\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .xxl\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .xxl\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .xxl\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .xxl\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .xxl\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .xxl\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .xxl\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .xxl\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .xxl\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .xxl\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .xxl\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .xxl\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .xxl\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .xxl\:border-solid{
    border-style: solid;
  }

  .xxl\:border-dashed{
    border-style: dashed;
  }

  .xxl\:border-dotted{
    border-style: dotted;
  }

  .xxl\:border-double{
    border-style: double;
  }

  .xxl\:border-none{
    border-style: none;
  }

  .xxl\:border-0{
    border-width: 0;
  }

  .xxl\:border-2{
    border-width: 2px;
  }

  .xxl\:border-4{
    border-width: 4px;
  }

  .xxl\:border-8{
    border-width: 8px;
  }

  .xxl\:border{
    border-width: 1px;
  }

  .xxl\:border-t-0{
    border-top-width: 0;
  }

  .xxl\:border-r-0{
    border-right-width: 0;
  }

  .xxl\:border-b-0{
    border-bottom-width: 0;
  }

  .xxl\:border-l-0{
    border-left-width: 0;
  }

  .xxl\:border-t-2{
    border-top-width: 2px;
  }

  .xxl\:border-r-2{
    border-right-width: 2px;
  }

  .xxl\:border-b-2{
    border-bottom-width: 2px;
  }

  .xxl\:border-l-2{
    border-left-width: 2px;
  }

  .xxl\:border-t-4{
    border-top-width: 4px;
  }

  .xxl\:border-r-4{
    border-right-width: 4px;
  }

  .xxl\:border-b-4{
    border-bottom-width: 4px;
  }

  .xxl\:border-l-4{
    border-left-width: 4px;
  }

  .xxl\:border-t-8{
    border-top-width: 8px;
  }

  .xxl\:border-r-8{
    border-right-width: 8px;
  }

  .xxl\:border-b-8{
    border-bottom-width: 8px;
  }

  .xxl\:border-l-8{
    border-left-width: 8px;
  }

  .xxl\:border-t{
    border-top-width: 1px;
  }

  .xxl\:border-r{
    border-right-width: 1px;
  }

  .xxl\:border-b{
    border-bottom-width: 1px;
  }

  .xxl\:border-l{
    border-left-width: 1px;
  }

  .xxl\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .xxl\:box-content{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .xxl\:cursor-auto{
    cursor: auto;
  }

  .xxl\:cursor-default{
    cursor: default;
  }

  .xxl\:cursor-pointer{
    cursor: pointer;
  }

  .xxl\:cursor-wait{
    cursor: wait;
  }

  .xxl\:cursor-text{
    cursor: text;
  }

  .xxl\:cursor-move{
    cursor: move;
  }

  .xxl\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .xxl\:block{
    display: block;
  }

  .xxl\:inline-block{
    display: inline-block;
  }

  .xxl\:inline{
    display: inline;
  }

  .xxl\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .xxl\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .xxl\:table{
    display: table;
  }

  .xxl\:table-caption{
    display: table-caption;
  }

  .xxl\:table-cell{
    display: table-cell;
  }

  .xxl\:table-column{
    display: table-column;
  }

  .xxl\:table-column-group{
    display: table-column-group;
  }

  .xxl\:table-footer-group{
    display: table-footer-group;
  }

  .xxl\:table-header-group{
    display: table-header-group;
  }

  .xxl\:table-row-group{
    display: table-row-group;
  }

  .xxl\:table-row{
    display: table-row;
  }

  .xxl\:flow-root{
    display: flow-root;
  }

  .xxl\:grid{
    display: grid;
  }

  .xxl\:inline-grid{
    display: inline-grid;
  }

  .xxl\:contents{
    display: contents;
  }

  .xxl\:hidden{
    display: none;
  }

  .xxl\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .xxl\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .xxl\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .xxl\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .xxl\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .xxl\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .xxl\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .xxl\:place-items-auto{
    place-items: auto;
  }

  .xxl\:place-items-start{
    place-items: start;
  }

  .xxl\:place-items-end{
    place-items: end;
  }

  .xxl\:place-items-center{
    place-items: center;
  }

  .xxl\:place-items-stretch{
    place-items: stretch;
  }

  .xxl\:place-content-center{
    place-content: center;
  }

  .xxl\:place-content-start{
    place-content: start;
  }

  .xxl\:place-content-end{
    place-content: end;
  }

  .xxl\:place-content-between{
    place-content: space-between;
  }

  .xxl\:place-content-around{
    place-content: space-around;
  }

  .xxl\:place-content-evenly{
    place-content: space-evenly;
  }

  .xxl\:place-content-stretch{
    place-content: stretch;
  }

  .xxl\:place-self-auto{
    place-self: auto;
  }

  .xxl\:place-self-start{
    place-self: start;
  }

  .xxl\:place-self-end{
    place-self: end;
  }

  .xxl\:place-self-center{
    place-self: center;
  }

  .xxl\:place-self-stretch{
    place-self: stretch;
  }

  .xxl\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .xxl\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .xxl\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .xxl\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .xxl\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .xxl\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .xxl\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .xxl\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .xxl\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .xxl\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .xxl\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .xxl\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .xxl\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .xxl\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .xxl\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .xxl\:self-stretch{
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .xxl\:justify-items-auto{
    justify-items: auto;
  }

  .xxl\:justify-items-start{
    justify-items: start;
  }

  .xxl\:justify-items-end{
    justify-items: end;
  }

  .xxl\:justify-items-center{
    justify-items: center;
  }

  .xxl\:justify-items-stretch{
    justify-items: stretch;
  }

  .xxl\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .xxl\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .xxl\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .xxl\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .xxl\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .xxl\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .xxl\:justify-self-auto{
    justify-self: auto;
  }

  .xxl\:justify-self-start{
    justify-self: start;
  }

  .xxl\:justify-self-end{
    justify-self: end;
  }

  .xxl\:justify-self-center{
    justify-self: center;
  }

  .xxl\:justify-self-stretch{
    justify-self: stretch;
  }

  .xxl\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .xxl\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .xxl\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .xxl\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .xxl\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .xxl\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .xxl\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .xxl\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .xxl\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .xxl\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .xxl\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .xxl\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .xxl\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .xxl\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .xxl\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .xxl\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .xxl\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .xxl\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .xxl\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .xxl\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .xxl\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .xxl\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .xxl\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .xxl\:float-right{
    float: right;
  }

  .xxl\:float-left{
    float: left;
  }

  .xxl\:float-none{
    float: none;
  }

  .xxl\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .xxl\:clear-left{
    clear: left;
  }

  .xxl\:clear-right{
    clear: right;
  }

  .xxl\:clear-both{
    clear: both;
  }

  .xxl\:clear-none{
    clear: none;
  }

  .xxl\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .xxl\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .xxl\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .xxl\:font-hairline{
    font-weight: 100;
  }

  .xxl\:font-thin{
    font-weight: 200;
  }

  .xxl\:font-light{
    font-weight: 300;
  }

  .xxl\:font-normal{
    font-weight: 400;
  }

  .xxl\:font-medium{
    font-weight: 500;
  }

  .xxl\:font-semibold{
    font-weight: 600;
  }

  .xxl\:font-bold{
    font-weight: 700;
  }

  .xxl\:font-extrabold{
    font-weight: 800;
  }

  .xxl\:font-black{
    font-weight: 900;
  }

  .xxl\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .xxl\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .xxl\:hover\:font-light:hover{
    font-weight: 300;
  }

  .xxl\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .xxl\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .xxl\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .xxl\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .xxl\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .xxl\:hover\:font-black:hover{
    font-weight: 900;
  }

  .xxl\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .xxl\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .xxl\:focus\:font-light:focus{
    font-weight: 300;
  }

  .xxl\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .xxl\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .xxl\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .xxl\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .xxl\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .xxl\:focus\:font-black:focus{
    font-weight: 900;
  }

  .xxl\:h-0{
    height: 0;
  }

  .xxl\:h-1{
    height: 0.25rem;
  }

  .xxl\:h-2{
    height: 0.5rem;
  }

  .xxl\:h-3{
    height: 0.75rem;
  }

  .xxl\:h-4{
    height: 1rem;
  }

  .xxl\:h-5{
    height: 1.25rem;
  }

  .xxl\:h-6{
    height: 1.5rem;
  }

  .xxl\:h-8{
    height: 2rem;
  }

  .xxl\:h-10{
    height: 2.5rem;
  }

  .xxl\:h-12{
    height: 3rem;
  }

  .xxl\:h-14{
    height: 3.5rem;
  }

  .xxl\:h-16{
    height: 4rem;
  }

  .xxl\:h-20{
    height: 5rem;
  }

  .xxl\:h-21{
    height: 5.25rem;
  }

  .xxl\:h-24{
    height: 6rem;
  }

  .xxl\:h-32{
    height: 8rem;
  }

  .xxl\:h-36{
    height: 9rem;
  }

  .xxl\:h-40{
    height: 10rem;
  }

  .xxl\:h-44{
    height: 11rem;
  }

  .xxl\:h-48{
    height: 12rem;
  }

  .xxl\:h-56{
    height: 14rem;
  }

  .xxl\:h-64{
    height: 16rem;
  }

  .xxl\:h-544{
    height: 34rem;
  }

  .xxl\:h-auto{
    height: auto;
  }

  .xxl\:h-px{
    height: 1px;
  }

  .xxl\:h-full{
    height: 100%;
  }

  .xxl\:h-screen{
    height: 100vh;
  }

  .xxl\:text-0{
    font-size: 0;
  }

  .xxl\:text-xxs{
    font-size: .75rem;
  }

  .xxl\:text-xs{
    font-size: .8125rem;
  }

  .xxl\:text-sm{
    font-size: .875rem;
  }

  .xxl\:text-base{
    font-size: .9375rem;
  }

  .xxl\:text-lg{
    font-size: 1rem;
  }

  .xxl\:text-2lg{
    font-size: 1.125rem;
  }

  .xxl\:text-xl{
    font-size: 1.25rem;
  }

  .xxl\:text-2xl{
    font-size: 1.5rem;
  }

  .xxl\:text-3xl{
    font-size: 2rem;
  }

  .xxl\:text-4xl{
    font-size: 2.25rem;
  }

  .xxl\:text-5xl{
    font-size: 3rem;
  }

  .xxl\:leading-none{
    line-height: 1;
  }

  .xxl\:leading-tight{
    line-height: 1.25;
  }

  .xxl\:leading-snug{
    line-height: 1.375;
  }

  .xxl\:leading-normal{
    line-height: 1.5;
  }

  .xxl\:leading-relaxed{
    line-height: 1.625;
  }

  .xxl\:leading-loose{
    line-height: 2;
  }

  .xxl\:list-inside{
    list-style-position: inside;
  }

  .xxl\:list-outside{
    list-style-position: outside;
  }

  .xxl\:list-none{
    list-style-type: none;
  }

  .xxl\:list-disc{
    list-style-type: disc;
  }

  .xxl\:list-decimal{
    list-style-type: decimal;
  }

  .xxl\:m-0{
    margin: 0;
  }

  .xxl\:m-1{
    margin: 0.25rem;
  }

  .xxl\:m-2{
    margin: 0.5rem;
  }

  .xxl\:m-3{
    margin: 0.75rem;
  }

  .xxl\:m-4{
    margin: 1rem;
  }

  .xxl\:m-5{
    margin: 1.25rem;
  }

  .xxl\:m-6{
    margin: 1.5rem;
  }

  .xxl\:m-8{
    margin: 2rem;
  }

  .xxl\:m-10{
    margin: 2.5rem;
  }

  .xxl\:m-12{
    margin: 3rem;
  }

  .xxl\:m-14{
    margin: 3.5rem;
  }

  .xxl\:m-16{
    margin: 4rem;
  }

  .xxl\:m-20{
    margin: 5rem;
  }

  .xxl\:m-24{
    margin: 6rem;
  }

  .xxl\:m-32{
    margin: 8rem;
  }

  .xxl\:m-36{
    margin: 9rem;
  }

  .xxl\:m-40{
    margin: 10rem;
  }

  .xxl\:m-44{
    margin: 11rem;
  }

  .xxl\:m-48{
    margin: 12rem;
  }

  .xxl\:m-56{
    margin: 14rem;
  }

  .xxl\:m-64{
    margin: 16rem;
  }

  .xxl\:m-auto{
    margin: auto;
  }

  .xxl\:m-px{
    margin: 1px;
  }

  .xxl\:-m-1{
    margin: -0.25rem;
  }

  .xxl\:-m-2{
    margin: -0.5rem;
  }

  .xxl\:-m-3{
    margin: -0.75rem;
  }

  .xxl\:-m-4{
    margin: -1rem;
  }

  .xxl\:-m-5{
    margin: -1.25rem;
  }

  .xxl\:-m-6{
    margin: -1.5rem;
  }

  .xxl\:-m-8{
    margin: -2rem;
  }

  .xxl\:-m-10{
    margin: -2.5rem;
  }

  .xxl\:-m-12{
    margin: -3rem;
  }

  .xxl\:-m-14{
    margin: -3.5rem;
  }

  .xxl\:-m-16{
    margin: -4rem;
  }

  .xxl\:-m-20{
    margin: -5rem;
  }

  .xxl\:-m-24{
    margin: -6rem;
  }

  .xxl\:-m-32{
    margin: -8rem;
  }

  .xxl\:-m-36{
    margin: -9rem;
  }

  .xxl\:-m-40{
    margin: -10rem;
  }

  .xxl\:-m-44{
    margin: -11rem;
  }

  .xxl\:-m-48{
    margin: -12rem;
  }

  .xxl\:-m-56{
    margin: -14rem;
  }

  .xxl\:-m-64{
    margin: -16rem;
  }

  .xxl\:-m-px{
    margin: -1px;
  }

  .xxl\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .xxl\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

  .xxl\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .xxl\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .xxl\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .xxl\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .xxl\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .xxl\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .xxl\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .xxl\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xxl\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .xxl\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xxl\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .xxl\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xxl\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .xxl\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xxl\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .xxl\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xxl\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .xxl\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xxl\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .xxl\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .xxl\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .xxl\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .xxl\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .xxl\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xxl\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .xxl\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .xxl\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .xxl\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .xxl\:my-36{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .xxl\:mx-36{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .xxl\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .xxl\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .xxl\:my-44{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .xxl\:mx-44{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .xxl\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .xxl\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .xxl\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .xxl\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .xxl\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .xxl\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .xxl\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .xxl\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .xxl\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .xxl\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .xxl\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .xxl\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .xxl\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .xxl\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .xxl\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .xxl\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .xxl\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .xxl\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .xxl\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .xxl\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .xxl\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .xxl\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .xxl\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .xxl\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .xxl\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .xxl\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .xxl\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .xxl\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .xxl\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .xxl\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .xxl\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .xxl\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .xxl\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xxl\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xxl\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .xxl\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .xxl\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .xxl\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .xxl\:-my-36{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .xxl\:-mx-36{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .xxl\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .xxl\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .xxl\:-my-44{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .xxl\:-mx-44{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .xxl\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .xxl\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .xxl\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .xxl\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .xxl\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .xxl\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .xxl\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .xxl\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .xxl\:mt-0{
    margin-top: 0;
  }

  .xxl\:mr-0{
    margin-right: 0;
  }

  .xxl\:mb-0{
    margin-bottom: 0;
  }

  .xxl\:ml-0{
    margin-left: 0;
  }

  .xxl\:mt-1{
    margin-top: 0.25rem;
  }

  .xxl\:mr-1{
    margin-right: 0.25rem;
  }

  .xxl\:mb-1{
    margin-bottom: 0.25rem;
  }

  .xxl\:ml-1{
    margin-left: 0.25rem;
  }

  .xxl\:mt-2{
    margin-top: 0.5rem;
  }

  .xxl\:mr-2{
    margin-right: 0.5rem;
  }

  .xxl\:mb-2{
    margin-bottom: 0.5rem;
  }

  .xxl\:ml-2{
    margin-left: 0.5rem;
  }

  .xxl\:mt-3{
    margin-top: 0.75rem;
  }

  .xxl\:mr-3{
    margin-right: 0.75rem;
  }

  .xxl\:mb-3{
    margin-bottom: 0.75rem;
  }

  .xxl\:ml-3{
    margin-left: 0.75rem;
  }

  .xxl\:mt-4{
    margin-top: 1rem;
  }

  .xxl\:mr-4{
    margin-right: 1rem;
  }

  .xxl\:mb-4{
    margin-bottom: 1rem;
  }

  .xxl\:ml-4{
    margin-left: 1rem;
  }

  .xxl\:mt-5{
    margin-top: 1.25rem;
  }

  .xxl\:mr-5{
    margin-right: 1.25rem;
  }

  .xxl\:mb-5{
    margin-bottom: 1.25rem;
  }

  .xxl\:ml-5{
    margin-left: 1.25rem;
  }

  .xxl\:mt-6{
    margin-top: 1.5rem;
  }

  .xxl\:mr-6{
    margin-right: 1.5rem;
  }

  .xxl\:mb-6{
    margin-bottom: 1.5rem;
  }

  .xxl\:ml-6{
    margin-left: 1.5rem;
  }

  .xxl\:mt-8{
    margin-top: 2rem;
  }

  .xxl\:mr-8{
    margin-right: 2rem;
  }

  .xxl\:mb-8{
    margin-bottom: 2rem;
  }

  .xxl\:ml-8{
    margin-left: 2rem;
  }

  .xxl\:mt-10{
    margin-top: 2.5rem;
  }

  .xxl\:mr-10{
    margin-right: 2.5rem;
  }

  .xxl\:mb-10{
    margin-bottom: 2.5rem;
  }

  .xxl\:ml-10{
    margin-left: 2.5rem;
  }

  .xxl\:mt-12{
    margin-top: 3rem;
  }

  .xxl\:mr-12{
    margin-right: 3rem;
  }

  .xxl\:mb-12{
    margin-bottom: 3rem;
  }

  .xxl\:ml-12{
    margin-left: 3rem;
  }

  .xxl\:mt-14{
    margin-top: 3.5rem;
  }

  .xxl\:mr-14{
    margin-right: 3.5rem;
  }

  .xxl\:mb-14{
    margin-bottom: 3.5rem;
  }

  .xxl\:ml-14{
    margin-left: 3.5rem;
  }

  .xxl\:mt-16{
    margin-top: 4rem;
  }

  .xxl\:mr-16{
    margin-right: 4rem;
  }

  .xxl\:mb-16{
    margin-bottom: 4rem;
  }

  .xxl\:ml-16{
    margin-left: 4rem;
  }

  .xxl\:mt-20{
    margin-top: 5rem;
  }

  .xxl\:mr-20{
    margin-right: 5rem;
  }

  .xxl\:mb-20{
    margin-bottom: 5rem;
  }

  .xxl\:ml-20{
    margin-left: 5rem;
  }

  .xxl\:mt-24{
    margin-top: 6rem;
  }

  .xxl\:mr-24{
    margin-right: 6rem;
  }

  .xxl\:mb-24{
    margin-bottom: 6rem;
  }

  .xxl\:ml-24{
    margin-left: 6rem;
  }

  .xxl\:mt-32{
    margin-top: 8rem;
  }

  .xxl\:mr-32{
    margin-right: 8rem;
  }

  .xxl\:mb-32{
    margin-bottom: 8rem;
  }

  .xxl\:ml-32{
    margin-left: 8rem;
  }

  .xxl\:mt-36{
    margin-top: 9rem;
  }

  .xxl\:mr-36{
    margin-right: 9rem;
  }

  .xxl\:mb-36{
    margin-bottom: 9rem;
  }

  .xxl\:ml-36{
    margin-left: 9rem;
  }

  .xxl\:mt-40{
    margin-top: 10rem;
  }

  .xxl\:mr-40{
    margin-right: 10rem;
  }

  .xxl\:mb-40{
    margin-bottom: 10rem;
  }

  .xxl\:ml-40{
    margin-left: 10rem;
  }

  .xxl\:mt-44{
    margin-top: 11rem;
  }

  .xxl\:mr-44{
    margin-right: 11rem;
  }

  .xxl\:mb-44{
    margin-bottom: 11rem;
  }

  .xxl\:ml-44{
    margin-left: 11rem;
  }

  .xxl\:mt-48{
    margin-top: 12rem;
  }

  .xxl\:mr-48{
    margin-right: 12rem;
  }

  .xxl\:mb-48{
    margin-bottom: 12rem;
  }

  .xxl\:ml-48{
    margin-left: 12rem;
  }

  .xxl\:mt-56{
    margin-top: 14rem;
  }

  .xxl\:mr-56{
    margin-right: 14rem;
  }

  .xxl\:mb-56{
    margin-bottom: 14rem;
  }

  .xxl\:ml-56{
    margin-left: 14rem;
  }

  .xxl\:mt-64{
    margin-top: 16rem;
  }

  .xxl\:mr-64{
    margin-right: 16rem;
  }

  .xxl\:mb-64{
    margin-bottom: 16rem;
  }

  .xxl\:ml-64{
    margin-left: 16rem;
  }

  .xxl\:mt-auto{
    margin-top: auto;
  }

  .xxl\:mr-auto{
    margin-right: auto;
  }

  .xxl\:mb-auto{
    margin-bottom: auto;
  }

  .xxl\:ml-auto{
    margin-left: auto;
  }

  .xxl\:mt-px{
    margin-top: 1px;
  }

  .xxl\:mr-px{
    margin-right: 1px;
  }

  .xxl\:mb-px{
    margin-bottom: 1px;
  }

  .xxl\:ml-px{
    margin-left: 1px;
  }

  .xxl\:-mt-1{
    margin-top: -0.25rem;
  }

  .xxl\:-mr-1{
    margin-right: -0.25rem;
  }

  .xxl\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .xxl\:-ml-1{
    margin-left: -0.25rem;
  }

  .xxl\:-mt-2{
    margin-top: -0.5rem;
  }

  .xxl\:-mr-2{
    margin-right: -0.5rem;
  }

  .xxl\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .xxl\:-ml-2{
    margin-left: -0.5rem;
  }

  .xxl\:-mt-3{
    margin-top: -0.75rem;
  }

  .xxl\:-mr-3{
    margin-right: -0.75rem;
  }

  .xxl\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .xxl\:-ml-3{
    margin-left: -0.75rem;
  }

  .xxl\:-mt-4{
    margin-top: -1rem;
  }

  .xxl\:-mr-4{
    margin-right: -1rem;
  }

  .xxl\:-mb-4{
    margin-bottom: -1rem;
  }

  .xxl\:-ml-4{
    margin-left: -1rem;
  }

  .xxl\:-mt-5{
    margin-top: -1.25rem;
  }

  .xxl\:-mr-5{
    margin-right: -1.25rem;
  }

  .xxl\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .xxl\:-ml-5{
    margin-left: -1.25rem;
  }

  .xxl\:-mt-6{
    margin-top: -1.5rem;
  }

  .xxl\:-mr-6{
    margin-right: -1.5rem;
  }

  .xxl\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .xxl\:-ml-6{
    margin-left: -1.5rem;
  }

  .xxl\:-mt-8{
    margin-top: -2rem;
  }

  .xxl\:-mr-8{
    margin-right: -2rem;
  }

  .xxl\:-mb-8{
    margin-bottom: -2rem;
  }

  .xxl\:-ml-8{
    margin-left: -2rem;
  }

  .xxl\:-mt-10{
    margin-top: -2.5rem;
  }

  .xxl\:-mr-10{
    margin-right: -2.5rem;
  }

  .xxl\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .xxl\:-ml-10{
    margin-left: -2.5rem;
  }

  .xxl\:-mt-12{
    margin-top: -3rem;
  }

  .xxl\:-mr-12{
    margin-right: -3rem;
  }

  .xxl\:-mb-12{
    margin-bottom: -3rem;
  }

  .xxl\:-ml-12{
    margin-left: -3rem;
  }

  .xxl\:-mt-14{
    margin-top: -3.5rem;
  }

  .xxl\:-mr-14{
    margin-right: -3.5rem;
  }

  .xxl\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .xxl\:-ml-14{
    margin-left: -3.5rem;
  }

  .xxl\:-mt-16{
    margin-top: -4rem;
  }

  .xxl\:-mr-16{
    margin-right: -4rem;
  }

  .xxl\:-mb-16{
    margin-bottom: -4rem;
  }

  .xxl\:-ml-16{
    margin-left: -4rem;
  }

  .xxl\:-mt-20{
    margin-top: -5rem;
  }

  .xxl\:-mr-20{
    margin-right: -5rem;
  }

  .xxl\:-mb-20{
    margin-bottom: -5rem;
  }

  .xxl\:-ml-20{
    margin-left: -5rem;
  }

  .xxl\:-mt-24{
    margin-top: -6rem;
  }

  .xxl\:-mr-24{
    margin-right: -6rem;
  }

  .xxl\:-mb-24{
    margin-bottom: -6rem;
  }

  .xxl\:-ml-24{
    margin-left: -6rem;
  }

  .xxl\:-mt-32{
    margin-top: -8rem;
  }

  .xxl\:-mr-32{
    margin-right: -8rem;
  }

  .xxl\:-mb-32{
    margin-bottom: -8rem;
  }

  .xxl\:-ml-32{
    margin-left: -8rem;
  }

  .xxl\:-mt-36{
    margin-top: -9rem;
  }

  .xxl\:-mr-36{
    margin-right: -9rem;
  }

  .xxl\:-mb-36{
    margin-bottom: -9rem;
  }

  .xxl\:-ml-36{
    margin-left: -9rem;
  }

  .xxl\:-mt-40{
    margin-top: -10rem;
  }

  .xxl\:-mr-40{
    margin-right: -10rem;
  }

  .xxl\:-mb-40{
    margin-bottom: -10rem;
  }

  .xxl\:-ml-40{
    margin-left: -10rem;
  }

  .xxl\:-mt-44{
    margin-top: -11rem;
  }

  .xxl\:-mr-44{
    margin-right: -11rem;
  }

  .xxl\:-mb-44{
    margin-bottom: -11rem;
  }

  .xxl\:-ml-44{
    margin-left: -11rem;
  }

  .xxl\:-mt-48{
    margin-top: -12rem;
  }

  .xxl\:-mr-48{
    margin-right: -12rem;
  }

  .xxl\:-mb-48{
    margin-bottom: -12rem;
  }

  .xxl\:-ml-48{
    margin-left: -12rem;
  }

  .xxl\:-mt-56{
    margin-top: -14rem;
  }

  .xxl\:-mr-56{
    margin-right: -14rem;
  }

  .xxl\:-mb-56{
    margin-bottom: -14rem;
  }

  .xxl\:-ml-56{
    margin-left: -14rem;
  }

  .xxl\:-mt-64{
    margin-top: -16rem;
  }

  .xxl\:-mr-64{
    margin-right: -16rem;
  }

  .xxl\:-mb-64{
    margin-bottom: -16rem;
  }

  .xxl\:-ml-64{
    margin-left: -16rem;
  }

  .xxl\:-mt-px{
    margin-top: -1px;
  }

  .xxl\:-mr-px{
    margin-right: -1px;
  }

  .xxl\:-mb-px{
    margin-bottom: -1px;
  }

  .xxl\:-ml-px{
    margin-left: -1px;
  }

  .xxl\:max-h-full{
    max-height: 100%;
  }

  .xxl\:max-h-screen{
    max-height: 100vh;
  }

  .xxl\:max-w-none{
    max-width: none;
  }

  .xxl\:max-w-xs{
    max-width: 20rem;
  }

  .xxl\:max-w-sm{
    max-width: 24rem;
  }

  .xxl\:max-w-md{
    max-width: 28rem;
  }

  .xxl\:max-w-lg{
    max-width: 32rem;
  }

  .xxl\:max-w-xl{
    max-width: 36rem;
  }

  .xxl\:max-w-2xl{
    max-width: 42rem;
  }

  .xxl\:max-w-3xl{
    max-width: 48rem;
  }

  .xxl\:max-w-4xl{
    max-width: 56rem;
  }

  .xxl\:max-w-5xl{
    max-width: 64rem;
  }

  .xxl\:max-w-6xl{
    max-width: 72rem;
  }

  .xxl\:max-w-full{
    max-width: 100%;
  }

  .xxl\:max-w-screen-xs{
    max-width: 420px;
  }

  .xxl\:max-w-screen-sm{
    max-width: 576px;
  }

  .xxl\:max-w-screen-md{
    max-width: 768px;
  }

  .xxl\:max-w-screen-lg{
    max-width: 992px;
  }

  .xxl\:max-w-screen-xl{
    max-width: 1200px;
  }

  .xxl\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .xxl\:max-w-screen-hd{
    max-width: 1920px;
  }

  .xxl\:min-h-0{
    min-height: 0;
  }

  .xxl\:min-h-full{
    min-height: 100%;
  }

  .xxl\:min-h-screen{
    min-height: 100vh;
  }

  .xxl\:min-w-0{
    min-width: 0;
  }

  .xxl\:min-w-1{
    min-width: 0.25rem;
  }

  .xxl\:min-w-2{
    min-width: 0.5rem;
  }

  .xxl\:min-w-3{
    min-width: 0.75rem;
  }

  .xxl\:min-w-4{
    min-width: 1rem;
  }

  .xxl\:min-w-5{
    min-width: 1.25rem;
  }

  .xxl\:min-w-6{
    min-width: 1.5rem;
  }

  .xxl\:min-w-8{
    min-width: 2rem;
  }

  .xxl\:min-w-10{
    min-width: 2.5rem;
  }

  .xxl\:min-w-12{
    min-width: 3rem;
  }

  .xxl\:min-w-14{
    min-width: 3.5rem;
  }

  .xxl\:min-w-16{
    min-width: 4rem;
  }

  .xxl\:min-w-20{
    min-width: 5rem;
  }

  .xxl\:min-w-24{
    min-width: 6rem;
  }

  .xxl\:min-w-32{
    min-width: 8rem;
  }

  .xxl\:min-w-36{
    min-width: 9rem;
  }

  .xxl\:min-w-40{
    min-width: 10rem;
  }

  .xxl\:min-w-44{
    min-width: 11rem;
  }

  .xxl\:min-w-48{
    min-width: 12rem;
  }

  .xxl\:min-w-56{
    min-width: 14rem;
  }

  .xxl\:min-w-64{
    min-width: 16rem;
  }

  .xxl\:min-w-px{
    min-width: 1px;
  }

  .xxl\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .xxl\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .xxl\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .xxl\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .xxl\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .xxl\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .xxl\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .xxl\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .xxl\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .xxl\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .xxl\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .xxl\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .xxl\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .xxl\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .xxl\:opacity-0{
    opacity: 0;
  }

  .xxl\:opacity-25{
    opacity: 0.25;
  }

  .xxl\:opacity-50{
    opacity: 0.5;
  }

  .xxl\:opacity-75{
    opacity: 0.75;
  }

  .xxl\:opacity-100{
    opacity: 1;
  }

  .xxl\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .xxl\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .xxl\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .xxl\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .xxl\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .xxl\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .xxl\:overflow-auto{
    overflow: auto;
  }

  .xxl\:overflow-hidden{
    overflow: hidden;
  }

  .xxl\:overflow-visible{
    overflow: visible;
  }

  .xxl\:overflow-scroll{
    overflow: scroll;
  }

  .xxl\:overflow-x-auto{
    overflow-x: auto;
  }

  .xxl\:overflow-y-auto{
    overflow-y: auto;
  }

  .xxl\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .xxl\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .xxl\:overflow-x-visible{
    overflow-x: visible;
  }

  .xxl\:overflow-y-visible{
    overflow-y: visible;
  }

  .xxl\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .xxl\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .xxl\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .xxl\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .xxl\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .xxl\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .xxl\:overscroll-none{
    overscroll-behavior: none;
  }

  .xxl\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .xxl\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .xxl\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .xxl\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .xxl\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .xxl\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .xxl\:p-0{
    padding: 0;
  }

  .xxl\:p-1{
    padding: 0.25rem;
  }

  .xxl\:p-2{
    padding: 0.5rem;
  }

  .xxl\:p-3{
    padding: 0.75rem;
  }

  .xxl\:p-4{
    padding: 1rem;
  }

  .xxl\:p-5{
    padding: 1.25rem;
  }

  .xxl\:p-6{
    padding: 1.5rem;
  }

  .xxl\:p-8{
    padding: 2rem;
  }

  .xxl\:p-10{
    padding: 2.5rem;
  }

  .xxl\:p-12{
    padding: 3rem;
  }

  .xxl\:p-14{
    padding: 3.5rem;
  }

  .xxl\:p-16{
    padding: 4rem;
  }

  .xxl\:p-20{
    padding: 5rem;
  }

  .xxl\:p-21{
    padding: 5.25rem;
  }

  .xxl\:p-24{
    padding: 6rem;
  }

  .xxl\:p-32{
    padding: 8rem;
  }

  .xxl\:p-36{
    padding: 9rem;
  }

  .xxl\:p-40{
    padding: 10rem;
  }

  .xxl\:p-44{
    padding: 11rem;
  }

  .xxl\:p-48{
    padding: 12rem;
  }

  .xxl\:p-56{
    padding: 14rem;
  }

  .xxl\:p-64{
    padding: 16rem;
  }

  .xxl\:p-px{
    padding: 1px;
  }

  .xxl\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .xxl\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .xxl\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .xxl\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .xxl\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .xxl\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .xxl\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .xxl\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .xxl\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xxl\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xxl\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xxl\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xxl\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xxl\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xxl\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xxl\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xxl\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xxl\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xxl\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xxl\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xxl\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .xxl\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .xxl\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xxl\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xxl\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xxl\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xxl\:py-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .xxl\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .xxl\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xxl\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xxl\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xxl\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xxl\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xxl\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xxl\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xxl\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xxl\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xxl\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xxl\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xxl\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xxl\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xxl\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xxl\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xxl\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xxl\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xxl\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .xxl\:pt-0{
    padding-top: 0;
  }

  .xxl\:pr-0{
    padding-right: 0;
  }

  .xxl\:pb-0{
    padding-bottom: 0;
  }

  .xxl\:pl-0{
    padding-left: 0;
  }

  .xxl\:pt-1{
    padding-top: 0.25rem;
  }

  .xxl\:pr-1{
    padding-right: 0.25rem;
  }

  .xxl\:pb-1{
    padding-bottom: 0.25rem;
  }

  .xxl\:pl-1{
    padding-left: 0.25rem;
  }

  .xxl\:pt-2{
    padding-top: 0.5rem;
  }

  .xxl\:pr-2{
    padding-right: 0.5rem;
  }

  .xxl\:pb-2{
    padding-bottom: 0.5rem;
  }

  .xxl\:pl-2{
    padding-left: 0.5rem;
  }

  .xxl\:pt-3{
    padding-top: 0.75rem;
  }

  .xxl\:pr-3{
    padding-right: 0.75rem;
  }

  .xxl\:pb-3{
    padding-bottom: 0.75rem;
  }

  .xxl\:pl-3{
    padding-left: 0.75rem;
  }

  .xxl\:pt-4{
    padding-top: 1rem;
  }

  .xxl\:pr-4{
    padding-right: 1rem;
  }

  .xxl\:pb-4{
    padding-bottom: 1rem;
  }

  .xxl\:pl-4{
    padding-left: 1rem;
  }

  .xxl\:pt-5{
    padding-top: 1.25rem;
  }

  .xxl\:pr-5{
    padding-right: 1.25rem;
  }

  .xxl\:pb-5{
    padding-bottom: 1.25rem;
  }

  .xxl\:pl-5{
    padding-left: 1.25rem;
  }

  .xxl\:pt-6{
    padding-top: 1.5rem;
  }

  .xxl\:pr-6{
    padding-right: 1.5rem;
  }

  .xxl\:pb-6{
    padding-bottom: 1.5rem;
  }

  .xxl\:pl-6{
    padding-left: 1.5rem;
  }

  .xxl\:pt-8{
    padding-top: 2rem;
  }

  .xxl\:pr-8{
    padding-right: 2rem;
  }

  .xxl\:pb-8{
    padding-bottom: 2rem;
  }

  .xxl\:pl-8{
    padding-left: 2rem;
  }

  .xxl\:pt-10{
    padding-top: 2.5rem;
  }

  .xxl\:pr-10{
    padding-right: 2.5rem;
  }

  .xxl\:pb-10{
    padding-bottom: 2.5rem;
  }

  .xxl\:pl-10{
    padding-left: 2.5rem;
  }

  .xxl\:pt-12{
    padding-top: 3rem;
  }

  .xxl\:pr-12{
    padding-right: 3rem;
  }

  .xxl\:pb-12{
    padding-bottom: 3rem;
  }

  .xxl\:pl-12{
    padding-left: 3rem;
  }

  .xxl\:pt-14{
    padding-top: 3.5rem;
  }

  .xxl\:pr-14{
    padding-right: 3.5rem;
  }

  .xxl\:pb-14{
    padding-bottom: 3.5rem;
  }

  .xxl\:pl-14{
    padding-left: 3.5rem;
  }

  .xxl\:pt-16{
    padding-top: 4rem;
  }

  .xxl\:pr-16{
    padding-right: 4rem;
  }

  .xxl\:pb-16{
    padding-bottom: 4rem;
  }

  .xxl\:pl-16{
    padding-left: 4rem;
  }

  .xxl\:pt-20{
    padding-top: 5rem;
  }

  .xxl\:pr-20{
    padding-right: 5rem;
  }

  .xxl\:pb-20{
    padding-bottom: 5rem;
  }

  .xxl\:pl-20{
    padding-left: 5rem;
  }

  .xxl\:pt-21{
    padding-top: 5.25rem;
  }

  .xxl\:pr-21{
    padding-right: 5.25rem;
  }

  .xxl\:pb-21{
    padding-bottom: 5.25rem;
  }

  .xxl\:pl-21{
    padding-left: 5.25rem;
  }

  .xxl\:pt-24{
    padding-top: 6rem;
  }

  .xxl\:pr-24{
    padding-right: 6rem;
  }

  .xxl\:pb-24{
    padding-bottom: 6rem;
  }

  .xxl\:pl-24{
    padding-left: 6rem;
  }

  .xxl\:pt-32{
    padding-top: 8rem;
  }

  .xxl\:pr-32{
    padding-right: 8rem;
  }

  .xxl\:pb-32{
    padding-bottom: 8rem;
  }

  .xxl\:pl-32{
    padding-left: 8rem;
  }

  .xxl\:pt-36{
    padding-top: 9rem;
  }

  .xxl\:pr-36{
    padding-right: 9rem;
  }

  .xxl\:pb-36{
    padding-bottom: 9rem;
  }

  .xxl\:pl-36{
    padding-left: 9rem;
  }

  .xxl\:pt-40{
    padding-top: 10rem;
  }

  .xxl\:pr-40{
    padding-right: 10rem;
  }

  .xxl\:pb-40{
    padding-bottom: 10rem;
  }

  .xxl\:pl-40{
    padding-left: 10rem;
  }

  .xxl\:pt-44{
    padding-top: 11rem;
  }

  .xxl\:pr-44{
    padding-right: 11rem;
  }

  .xxl\:pb-44{
    padding-bottom: 11rem;
  }

  .xxl\:pl-44{
    padding-left: 11rem;
  }

  .xxl\:pt-48{
    padding-top: 12rem;
  }

  .xxl\:pr-48{
    padding-right: 12rem;
  }

  .xxl\:pb-48{
    padding-bottom: 12rem;
  }

  .xxl\:pl-48{
    padding-left: 12rem;
  }

  .xxl\:pt-56{
    padding-top: 14rem;
  }

  .xxl\:pr-56{
    padding-right: 14rem;
  }

  .xxl\:pb-56{
    padding-bottom: 14rem;
  }

  .xxl\:pl-56{
    padding-left: 14rem;
  }

  .xxl\:pt-64{
    padding-top: 16rem;
  }

  .xxl\:pr-64{
    padding-right: 16rem;
  }

  .xxl\:pb-64{
    padding-bottom: 16rem;
  }

  .xxl\:pl-64{
    padding-left: 16rem;
  }

  .xxl\:pt-px{
    padding-top: 1px;
  }

  .xxl\:pr-px{
    padding-right: 1px;
  }

  .xxl\:pb-px{
    padding-bottom: 1px;
  }

  .xxl\:pl-px{
    padding-left: 1px;
  }

  .xxl\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .xxl\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .xxl\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .xxl\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .xxl\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:placeholder-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .xxl\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .xxl\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color: transparent;
  }

  .xxl\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .xxl\:focus\:placeholder-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .xxl\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:placeholder-opacity-25::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:placeholder-opacity-50::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:placeholder-opacity-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .xxl\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .xxl\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .xxl\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .xxl\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

  .xxl\:pointer-events-none{
    pointer-events: none;
  }

  .xxl\:pointer-events-auto{
    pointer-events: auto;
  }

  .xxl\:static{
    position: static;
  }

  .xxl\:fixed{
    position: fixed;
  }

  .xxl\:absolute{
    position: absolute;
  }

  .xxl\:relative{
    position: relative;
  }

  .xxl\:sticky{
    position: sticky;
  }

  .xxl\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xxl\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xxl\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .xxl\:inset-x-0{
    right: 0;
    left: 0;
  }

  .xxl\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .xxl\:inset-x-auto{
    right: auto;
    left: auto;
  }

  .xxl\:top-0{
    top: 0;
  }

  .xxl\:right-0{
    right: 0;
  }

  .xxl\:bottom-0{
    bottom: 0;
  }

  .xxl\:left-0{
    left: 0;
  }

  .xxl\:top-auto{
    top: auto;
  }

  .xxl\:right-auto{
    right: auto;
  }

  .xxl\:bottom-auto{
    bottom: auto;
  }

  .xxl\:left-auto{
    left: auto;
  }

  .xxl\:resize-none{
    resize: none;
  }

  .xxl\:resize-y{
    resize: vertical;
  }

  .xxl\:resize-x{
    resize: horizontal;
  }

  .xxl\:resize{
    resize: both;
  }

  .xxl\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xxl\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xxl\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xxl\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xxl\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xxl\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xxl\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xxl\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xxl\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xxl\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xxl\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xxl\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xxl\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .xxl\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .xxl\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .xxl\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .xxl\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .xxl\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .xxl\:fill-current{
    fill: currentColor;
  }

  .xxl\:stroke-current{
    stroke: currentColor;
  }

  .xxl\:stroke-0{
    stroke-width: 0;
  }

  .xxl\:stroke-1{
    stroke-width: 1;
  }

  .xxl\:stroke-2{
    stroke-width: 2;
  }

  .xxl\:table-auto{
    table-layout: auto;
  }

  .xxl\:table-fixed{
    table-layout: fixed;
  }

  .xxl\:text-left{
    text-align: left;
  }

  .xxl\:text-center{
    text-align: center;
  }

  .xxl\:text-right{
    text-align: right;
  }

  .xxl\:text-justify{
    text-align: justify;
  }

  .xxl\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xxl\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:text-transparent{
    color: transparent;
  }

  .xxl\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xxl\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xxl\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xxl\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xxl\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xxl\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xxl\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xxl\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xxl\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xxl\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xxl\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xxl\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xxl\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xxl\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xxl\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xxl\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xxl\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xxl\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xxl\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xxl\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xxl\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xxl\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xxl\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xxl\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xxl\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xxl\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xxl\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xxl\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xxl\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xxl\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xxl\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xxl\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:hover\:text-transparent:hover{
    color: transparent;
  }

  .xxl\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xxl\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xxl\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xxl\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xxl\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xxl\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xxl\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xxl\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xxl\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xxl\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xxl\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xxl\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xxl\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xxl\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xxl\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xxl\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xxl\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xxl\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xxl\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xxl\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:focus\:text-transparent:focus{
    color: transparent;
  }

  .xxl\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xxl\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xxl\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xxl\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xxl\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xxl\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xxl\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xxl\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .xxl\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:focus\:text-transparent:focus{
    color: transparent;
  }

  .xxl\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .xxl\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .xxl\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .xxl\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .xxl\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .xxl\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .xxl\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .xxl\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .xxl\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .xxl\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .xxl\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .xxl\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .xxl\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .xxl\:text-opacity-0{
    --text-opacity: 0;
  }

  .xxl\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .xxl\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .xxl\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .xxl\:text-opacity-100{
    --text-opacity: 1;
  }

  .xxl\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .xxl\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .xxl\:hover\:text-opacity-50:hover{
    --text-opacity: 0.5;
  }

  .xxl\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .xxl\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .xxl\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .xxl\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .xxl\:focus\:text-opacity-50:focus{
    --text-opacity: 0.5;
  }

  .xxl\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .xxl\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .xxl\:italic{
    font-style: italic;
  }

  .xxl\:not-italic{
    font-style: normal;
  }

  .xxl\:uppercase{
    text-transform: uppercase;
  }

  .xxl\:lowercase{
    text-transform: lowercase;
  }

  .xxl\:capitalize{
    text-transform: capitalize;
  }

  .xxl\:normal-case{
    text-transform: none;
  }

  .xxl\:underline{
    text-decoration: underline;
  }

  .xxl\:line-through{
    text-decoration: line-through;
  }

  .xxl\:no-underline{
    text-decoration: none;
  }

  .xxl\:hover\:underline:hover{
    text-decoration: underline;
  }

  .xxl\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .xxl\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .xxl\:focus\:underline:focus{
    text-decoration: underline;
  }

  .xxl\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .xxl\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .xxl\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xxl\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xxl\:ordinal, .xxl\:slashed-zero, .xxl\:lining-nums, .xxl\:oldstyle-nums, .xxl\:proportional-nums, .xxl\:tabular-nums, .xxl\:diagonal-fractions, .xxl\: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);
  }

  .xxl\:normal-nums{
    font-variant-numeric: normal;
  }

  .xxl\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .xxl\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .xxl\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .xxl\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .xxl\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .xxl\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .xxl\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .xxl\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .xxl\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .xxl\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .xxl\:tracking-normal{
    letter-spacing: 0;
  }

  .xxl\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .xxl\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .xxl\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .xxl\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xxl\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xxl\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .xxl\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .xxl\:align-baseline{
    vertical-align: baseline;
  }

  .xxl\:align-top{
    vertical-align: top;
  }

  .xxl\:align-middle{
    vertical-align: middle;
  }

  .xxl\:align-bottom{
    vertical-align: bottom;
  }

  .xxl\:align-text-top{
    vertical-align: text-top;
  }

  .xxl\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .xxl\:visible{
    visibility: visible;
  }

  .xxl\:invisible{
    visibility: hidden;
  }

  .xxl\:whitespace-normal{
    white-space: normal;
  }

  .xxl\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .xxl\:whitespace-pre{
    white-space: pre;
  }

  .xxl\:whitespace-pre-line{
    white-space: pre-line;
  }

  .xxl\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .xxl\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .xxl\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .xxl\:break-all{
    word-break: break-all;
  }

  .xxl\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xxl\:w-0{
    width: 0;
  }

  .xxl\:w-1{
    width: 0.25rem;
  }

  .xxl\:w-2{
    width: 0.5rem;
  }

  .xxl\:w-3{
    width: 0.75rem;
  }

  .xxl\:w-4{
    width: 1rem;
  }

  .xxl\:w-5{
    width: 1.25rem;
  }

  .xxl\:w-6{
    width: 1.5rem;
  }

  .xxl\:w-8{
    width: 2rem;
  }

  .xxl\:w-10{
    width: 2.5rem;
  }

  .xxl\:w-12{
    width: 3rem;
  }

  .xxl\:w-14{
    width: 3.5rem;
  }

  .xxl\:w-16{
    width: 4rem;
  }

  .xxl\:w-20{
    width: 5rem;
  }

  .xxl\:w-24{
    width: 6rem;
  }

  .xxl\:w-32{
    width: 8rem;
  }

  .xxl\:w-36{
    width: 9rem;
  }

  .xxl\:w-40{
    width: 10rem;
  }

  .xxl\:w-44{
    width: 11rem;
  }

  .xxl\:w-48{
    width: 12rem;
  }

  .xxl\:w-56{
    width: 14rem;
  }

  .xxl\:w-64{
    width: 16rem;
  }

  .xxl\:w-auto{
    width: auto;
  }

  .xxl\:w-px{
    width: 1px;
  }

  .xxl\:w-1\/2{
    width: 50%;
  }

  .xxl\:w-1\/3{
    width: 33.333333%;
  }

  .xxl\:w-2\/3{
    width: 66.666667%;
  }

  .xxl\:w-1\/4{
    width: 25%;
  }

  .xxl\:w-2\/4{
    width: 50%;
  }

  .xxl\:w-3\/4{
    width: 75%;
  }

  .xxl\:w-1\/5{
    width: 20%;
  }

  .xxl\:w-2\/5{
    width: 40%;
  }

  .xxl\:w-3\/5{
    width: 60%;
  }

  .xxl\:w-4\/5{
    width: 80%;
  }

  .xxl\:w-1\/6{
    width: 16.666667%;
  }

  .xxl\:w-2\/6{
    width: 33.333333%;
  }

  .xxl\:w-3\/6{
    width: 50%;
  }

  .xxl\:w-4\/6{
    width: 66.666667%;
  }

  .xxl\:w-5\/6{
    width: 83.333333%;
  }

  .xxl\:w-1\/12{
    width: 8.333333%;
  }

  .xxl\:w-2\/12{
    width: 16.666667%;
  }

  .xxl\:w-3\/12{
    width: 25%;
  }

  .xxl\:w-4\/12{
    width: 33.333333%;
  }

  .xxl\:w-5\/12{
    width: 41.666667%;
  }

  .xxl\:w-6\/12{
    width: 50%;
  }

  .xxl\:w-7\/12{
    width: 58.333333%;
  }

  .xxl\:w-8\/12{
    width: 66.666667%;
  }

  .xxl\:w-9\/12{
    width: 75%;
  }

  .xxl\:w-10\/12{
    width: 83.333333%;
  }

  .xxl\:w-11\/12{
    width: 91.666667%;
  }

  .xxl\:w-full{
    width: 100%;
  }

  .xxl\:w-screen{
    width: 100vw;
  }

  .xxl\:z-0{
    z-index: 0;
  }

  .xxl\:z-10{
    z-index: 10;
  }

  .xxl\:z-20{
    z-index: 20;
  }

  .xxl\:z-30{
    z-index: 30;
  }

  .xxl\:z-40{
    z-index: 40;
  }

  .xxl\:z-50{
    z-index: 50;
  }

  .xxl\:z-auto{
    z-index: auto;
  }

  .xxl\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .xxl\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .xxl\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .xxl\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .xxl\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .xxl\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .xxl\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .xxl\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .xxl\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .xxl\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .xxl\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .xxl\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .xxl\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .xxl\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .xxl\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .xxl\:gap-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .xxl\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .xxl\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .xxl\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .xxl\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .xxl\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .xxl\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .xxl\:col-gap-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .xxl\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .xxl\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .xxl\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .xxl\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .xxl\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .xxl\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .xxl\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .xxl\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .xxl\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .xxl\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .xxl\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .xxl\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .xxl\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .xxl\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .xxl\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .xxl\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .xxl\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .xxl\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .xxl\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .xxl\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .xxl\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .xxl\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .xxl\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .xxl\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .xxl\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .xxl\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .xxl\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .xxl\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .xxl\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .xxl\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .xxl\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .xxl\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .xxl\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .xxl\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .xxl\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .xxl\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .xxl\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .xxl\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .xxl\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .xxl\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .xxl\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .xxl\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .xxl\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .xxl\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .xxl\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .xxl\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .xxl\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .xxl\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .xxl\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .xxl\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .xxl\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .xxl\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .xxl\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .xxl\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .xxl\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .xxl\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .xxl\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .xxl\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .xxl\:row-gap-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .xxl\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .xxl\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .xxl\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .xxl\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .xxl\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .xxl\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .xxl\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .xxl\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .xxl\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .xxl\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .xxl\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .xxl\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .xxl\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .xxl\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .xxl\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .xxl\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .xxl\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .xxl\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .xxl\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .xxl\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .xxl\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .xxl\:gap-y-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .xxl\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .xxl\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .xxl\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .xxl\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .xxl\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .xxl\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .xxl\:grid-flow-row{
    grid-auto-flow: row;
  }

  .xxl\:grid-flow-col{
    grid-auto-flow: column;
  }

  .xxl\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .xxl\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .xxl\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xxl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xxl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xxl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xxl\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xxl\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xxl\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xxl\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xxl\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xxl\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xxl\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xxl\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xxl\:grid-cols-none{
    grid-template-columns: none;
  }

  .xxl\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .xxl\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .xxl\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .xxl\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

  .xxl\:col-auto{
    grid-column: auto;
  }

  .xxl\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .xxl\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .xxl\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .xxl\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .xxl\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .xxl\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .xxl\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .xxl\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .xxl\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .xxl\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .xxl\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .xxl\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .xxl\:col-span-full{
    grid-column: 1 / -1;
  }

  .xxl\:col-start-1{
    grid-column-start: 1;
  }

  .xxl\:col-start-2{
    grid-column-start: 2;
  }

  .xxl\:col-start-3{
    grid-column-start: 3;
  }

  .xxl\:col-start-4{
    grid-column-start: 4;
  }

  .xxl\:col-start-5{
    grid-column-start: 5;
  }

  .xxl\:col-start-6{
    grid-column-start: 6;
  }

  .xxl\:col-start-7{
    grid-column-start: 7;
  }

  .xxl\:col-start-8{
    grid-column-start: 8;
  }

  .xxl\:col-start-9{
    grid-column-start: 9;
  }

  .xxl\:col-start-10{
    grid-column-start: 10;
  }

  .xxl\:col-start-11{
    grid-column-start: 11;
  }

  .xxl\:col-start-12{
    grid-column-start: 12;
  }

  .xxl\:col-start-13{
    grid-column-start: 13;
  }

  .xxl\:col-start-auto{
    grid-column-start: auto;
  }

  .xxl\:col-end-1{
    grid-column-end: 1;
  }

  .xxl\:col-end-2{
    grid-column-end: 2;
  }

  .xxl\:col-end-3{
    grid-column-end: 3;
  }

  .xxl\:col-end-4{
    grid-column-end: 4;
  }

  .xxl\:col-end-5{
    grid-column-end: 5;
  }

  .xxl\:col-end-6{
    grid-column-end: 6;
  }

  .xxl\:col-end-7{
    grid-column-end: 7;
  }

  .xxl\:col-end-8{
    grid-column-end: 8;
  }

  .xxl\:col-end-9{
    grid-column-end: 9;
  }

  .xxl\:col-end-10{
    grid-column-end: 10;
  }

  .xxl\:col-end-11{
    grid-column-end: 11;
  }

  .xxl\:col-end-12{
    grid-column-end: 12;
  }

  .xxl\:col-end-13{
    grid-column-end: 13;
  }

  .xxl\:col-end-auto{
    grid-column-end: auto;
  }

  .xxl\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .xxl\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .xxl\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .xxl\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .xxl\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .xxl\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .xxl\:grid-rows-none{
    grid-template-rows: none;
  }

  .xxl\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .xxl\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .xxl\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .xxl\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .xxl\:row-auto{
    grid-row: auto;
  }

  .xxl\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .xxl\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .xxl\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .xxl\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .xxl\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .xxl\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .xxl\:row-span-full{
    grid-row: 1 / -1;
  }

  .xxl\:row-start-1{
    grid-row-start: 1;
  }

  .xxl\:row-start-2{
    grid-row-start: 2;
  }

  .xxl\:row-start-3{
    grid-row-start: 3;
  }

  .xxl\:row-start-4{
    grid-row-start: 4;
  }

  .xxl\:row-start-5{
    grid-row-start: 5;
  }

  .xxl\:row-start-6{
    grid-row-start: 6;
  }

  .xxl\:row-start-7{
    grid-row-start: 7;
  }

  .xxl\:row-start-auto{
    grid-row-start: auto;
  }

  .xxl\:row-end-1{
    grid-row-end: 1;
  }

  .xxl\:row-end-2{
    grid-row-end: 2;
  }

  .xxl\:row-end-3{
    grid-row-end: 3;
  }

  .xxl\:row-end-4{
    grid-row-end: 4;
  }

  .xxl\:row-end-5{
    grid-row-end: 5;
  }

  .xxl\:row-end-6{
    grid-row-end: 6;
  }

  .xxl\:row-end-7{
    grid-row-end: 7;
  }

  .xxl\:row-end-auto{
    grid-row-end: auto;
  }

  .xxl\: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;
    -webkit-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: 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));
  }

  .xxl\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .xxl\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .xxl\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .xxl\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .xxl\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .xxl\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .xxl\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .xxl\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .xxl\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .xxl\:origin-top-left{
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }

  .xxl\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xxl\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xxl\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xxl\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xxl\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xxl\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xxl\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xxl\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xxl\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xxl\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xxl\:scale-x-0{
    --transform-scale-x: 0;
  }

  .xxl\:scale-x-50{
    --transform-scale-x: .5;
  }

  .xxl\:scale-x-75{
    --transform-scale-x: .75;
  }

  .xxl\:scale-x-90{
    --transform-scale-x: .9;
  }

  .xxl\:scale-x-95{
    --transform-scale-x: .95;
  }

  .xxl\:scale-x-100{
    --transform-scale-x: 1;
  }

  .xxl\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .xxl\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .xxl\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .xxl\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .xxl\:scale-y-0{
    --transform-scale-y: 0;
  }

  .xxl\:scale-y-50{
    --transform-scale-y: .5;
  }

  .xxl\:scale-y-75{
    --transform-scale-y: .75;
  }

  .xxl\:scale-y-90{
    --transform-scale-y: .9;
  }

  .xxl\:scale-y-95{
    --transform-scale-y: .95;
  }

  .xxl\:scale-y-100{
    --transform-scale-y: 1;
  }

  .xxl\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .xxl\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .xxl\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .xxl\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .xxl\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xxl\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xxl\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xxl\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xxl\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xxl\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xxl\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xxl\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xxl\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xxl\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xxl\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .xxl\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .xxl\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .xxl\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .xxl\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .xxl\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .xxl\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .xxl\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .xxl\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .xxl\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .xxl\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .xxl\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .xxl\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .xxl\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .xxl\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .xxl\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .xxl\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .xxl\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .xxl\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .xxl\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .xxl\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .xxl\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .xxl\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .xxl\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .xxl\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .xxl\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .xxl\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .xxl\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .xxl\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .xxl\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .xxl\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .xxl\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .xxl\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .xxl\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .xxl\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .xxl\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .xxl\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .xxl\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .xxl\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .xxl\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .xxl\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .xxl\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .xxl\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .xxl\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .xxl\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .xxl\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .xxl\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .xxl\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .xxl\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .xxl\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .xxl\:rotate-0{
    --transform-rotate: 0;
  }

  .xxl\:rotate-1{
    --transform-rotate: 1deg;
  }

  .xxl\:rotate-2{
    --transform-rotate: 2deg;
  }

  .xxl\:rotate-3{
    --transform-rotate: 3deg;
  }

  .xxl\:rotate-6{
    --transform-rotate: 6deg;
  }

  .xxl\:rotate-12{
    --transform-rotate: 12deg;
  }

  .xxl\:rotate-45{
    --transform-rotate: 45deg;
  }

  .xxl\:rotate-90{
    --transform-rotate: 90deg;
  }

  .xxl\:rotate-180{
    --transform-rotate: 180deg;
  }

  .xxl\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .xxl\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .xxl\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .xxl\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .xxl\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .xxl\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .xxl\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .xxl\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .xxl\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .xxl\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .xxl\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .xxl\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .xxl\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .xxl\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .xxl\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .xxl\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .xxl\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .xxl\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .xxl\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .xxl\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .xxl\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .xxl\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .xxl\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .xxl\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .xxl\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .xxl\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .xxl\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .xxl\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .xxl\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .xxl\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .xxl\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .xxl\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .xxl\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .xxl\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .xxl\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .xxl\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .xxl\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .xxl\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .xxl\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .xxl\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .xxl\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .xxl\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .xxl\:translate-x-0{
    --transform-translate-x: 0;
  }

  .xxl\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .xxl\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .xxl\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .xxl\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .xxl\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .xxl\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .xxl\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .xxl\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .xxl\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .xxl\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .xxl\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .xxl\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .xxl\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .xxl\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .xxl\:translate-x-36{
    --transform-translate-x: 9rem;
  }

  .xxl\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .xxl\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .xxl\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .xxl\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .xxl\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .xxl\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .xxl\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .xxl\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .xxl\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .xxl\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .xxl\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .xxl\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .xxl\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .xxl\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .xxl\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .xxl\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .xxl\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .xxl\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .xxl\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .xxl\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .xxl\:-translate-x-36{
    --transform-translate-x: -9rem;
  }

  .xxl\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .xxl\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .xxl\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .xxl\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .xxl\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .xxl\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .xxl\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .xxl\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .xxl\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .xxl\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .xxl\:translate-y-0{
    --transform-translate-y: 0;
  }

  .xxl\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .xxl\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .xxl\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .xxl\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .xxl\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .xxl\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .xxl\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .xxl\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .xxl\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .xxl\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .xxl\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .xxl\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .xxl\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .xxl\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .xxl\:translate-y-36{
    --transform-translate-y: 9rem;
  }

  .xxl\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .xxl\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .xxl\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .xxl\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .xxl\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .xxl\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .xxl\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .xxl\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .xxl\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .xxl\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .xxl\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .xxl\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .xxl\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .xxl\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .xxl\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .xxl\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .xxl\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .xxl\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .xxl\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .xxl\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .xxl\:-translate-y-36{
    --transform-translate-y: -9rem;
  }

  .xxl\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .xxl\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .xxl\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .xxl\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .xxl\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .xxl\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .xxl\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .xxl\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .xxl\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .xxl\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .xxl\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .xxl\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .xxl\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .xxl\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .xxl\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .xxl\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .xxl\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .xxl\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .xxl\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .xxl\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .xxl\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .xxl\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .xxl\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .xxl\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .xxl\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .xxl\:hover\:translate-x-36:hover{
    --transform-translate-x: 9rem;
  }

  .xxl\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .xxl\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .xxl\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .xxl\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .xxl\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .xxl\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .xxl\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .xxl\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .xxl\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .xxl\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .xxl\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .xxl\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .xxl\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .xxl\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .xxl\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .xxl\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .xxl\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .xxl\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .xxl\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .xxl\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .xxl\:hover\:-translate-x-36:hover{
    --transform-translate-x: -9rem;
  }

  .xxl\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .xxl\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .xxl\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .xxl\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .xxl\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .xxl\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .xxl\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .xxl\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .xxl\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .xxl\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .xxl\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .xxl\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .xxl\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .xxl\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .xxl\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .xxl\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .xxl\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .xxl\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .xxl\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .xxl\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .xxl\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .xxl\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .xxl\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .xxl\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .xxl\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .xxl\:hover\:translate-y-36:hover{
    --transform-translate-y: 9rem;
  }

  .xxl\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .xxl\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .xxl\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .xxl\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .xxl\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .xxl\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .xxl\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .xxl\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .xxl\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .xxl\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .xxl\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .xxl\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .xxl\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .xxl\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .xxl\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .xxl\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .xxl\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .xxl\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .xxl\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .xxl\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .xxl\:hover\:-translate-y-36:hover{
    --transform-translate-y: -9rem;
  }

  .xxl\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .xxl\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .xxl\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .xxl\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .xxl\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .xxl\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .xxl\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .xxl\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .xxl\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .xxl\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .xxl\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .xxl\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .xxl\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .xxl\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .xxl\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .xxl\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .xxl\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .xxl\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .xxl\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .xxl\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .xxl\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .xxl\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .xxl\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .xxl\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .xxl\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .xxl\:focus\:translate-x-36:focus{
    --transform-translate-x: 9rem;
  }

  .xxl\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .xxl\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .xxl\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .xxl\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .xxl\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .xxl\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .xxl\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .xxl\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .xxl\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .xxl\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .xxl\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .xxl\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .xxl\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .xxl\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .xxl\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .xxl\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .xxl\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .xxl\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .xxl\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .xxl\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .xxl\:focus\:-translate-x-36:focus{
    --transform-translate-x: -9rem;
  }

  .xxl\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .xxl\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .xxl\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .xxl\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .xxl\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .xxl\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .xxl\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .xxl\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .xxl\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .xxl\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .xxl\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .xxl\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .xxl\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .xxl\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .xxl\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .xxl\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .xxl\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .xxl\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .xxl\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .xxl\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .xxl\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .xxl\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .xxl\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .xxl\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .xxl\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .xxl\:focus\:translate-y-36:focus{
    --transform-translate-y: 9rem;
  }

  .xxl\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .xxl\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .xxl\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .xxl\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .xxl\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .xxl\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .xxl\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .xxl\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .xxl\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .xxl\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .xxl\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .xxl\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .xxl\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .xxl\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .xxl\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .xxl\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .xxl\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .xxl\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .xxl\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .xxl\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .xxl\:focus\:-translate-y-36:focus{
    --transform-translate-y: -9rem;
  }

  .xxl\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .xxl\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .xxl\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .xxl\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .xxl\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .xxl\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .xxl\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .xxl\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .xxl\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .xxl\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .xxl\:skew-x-0{
    --transform-skew-x: 0;
  }

  .xxl\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .xxl\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .xxl\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .xxl\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .xxl\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .xxl\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .xxl\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .xxl\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .xxl\:-skew-x-2{
    --transform-skew-x: -2deg;
  }

  .xxl\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .xxl\:skew-y-0{
    --transform-skew-y: 0;
  }

  .xxl\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .xxl\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .xxl\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .xxl\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .xxl\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .xxl\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .xxl\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .xxl\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .xxl\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .xxl\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .xxl\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .xxl\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .xxl\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .xxl\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .xxl\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .xxl\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .xxl\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .xxl\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .xxl\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .xxl\:hover\:-skew-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .xxl\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .xxl\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .xxl\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .xxl\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .xxl\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .xxl\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .xxl\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .xxl\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .xxl\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .xxl\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .xxl\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .xxl\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .xxl\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .xxl\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .xxl\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .xxl\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .xxl\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .xxl\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .xxl\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .xxl\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .xxl\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .xxl\:focus\:-skew-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .xxl\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .xxl\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .xxl\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .xxl\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .xxl\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .xxl\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .xxl\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .xxl\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .xxl\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .xxl\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .xxl\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .xxl\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .xxl\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .xxl\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .xxl\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .xxl\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .xxl\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .xxl\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .xxl\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .xxl\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .xxl\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .xxl\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .xxl\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .xxl\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .xxl\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .xxl\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .xxl\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .xxl\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .xxl\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .xxl\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .xxl\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .xxl\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .xxl\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .xxl\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .xxl\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .xxl\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .xxl\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .xxl\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .xxl\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .xxl\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .xxl\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .xxl\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .xxl\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .xxl\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .xxl\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .xxl\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .xxl\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .xxl\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .xxl\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .xxl\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .xxl\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .xxl\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .xxl\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .xxl\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .xxl\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .xxl\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .xxl\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .xxl\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .xxl\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .xxl\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .xxl\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .xxl\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .xxl\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .xxl\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .xxl\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .xxl\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .xxl\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .xxl\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .xxl\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .xxl\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .xxl\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .xxl\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .xxl\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .xxl\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .xxl\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .xxl\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .xxl\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .xxl\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .xxl\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .xxl\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .xxl\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .xxl\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .xxl\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .xxl\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .xxl\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .xxl\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .xxl\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .xxl\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .xxl\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .xxl\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .xxl\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .xxl\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .xxl\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .xxl\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .xxl\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .xxl\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .xxl\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .xxl\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .xxl\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .xxl\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .xxl\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .xxl\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .xxl\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .xxl\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .xxl\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .xxl\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .xxl\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .xxl\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .xxl\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .xxl\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .xxl\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .xxl\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .xxl\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .xxl\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .xxl\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .xxl\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .xxl\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .xxl\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .xxl\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .xxl\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .xxl\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .xxl\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .xxl\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .xxl\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .xxl\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .xxl\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .xxl\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .xxl\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .xxl\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .xxl\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .xxl\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .xxl\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .xxl\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .xxl\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .xxl\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .xxl\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .xxl\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .xxl\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .xxl\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .xxl\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .xxl\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .xxl\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .xxl\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .xxl\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .xxl\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .xxl\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .xxl\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .xxl\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .xxl\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .xxl\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .xxl\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .xxl\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .xxl\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .xxl\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .xxl\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .xxl\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .xxl\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .xxl\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .xxl\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .xxl\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .xxl\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .xxl\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .xxl\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .xxl\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .xxl\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .xxl\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .xxl\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .xxl\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .xxl\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .xxl\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .xxl\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .xxl\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .xxl\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .xxl\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .xxl\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .xxl\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .xxl\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .xxl\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .xxl\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .xxl\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .xxl\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .xxl\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .xxl\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .xxl\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .xxl\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .xxl\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .xxl\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .xxl\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .xxl\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .xxl\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .xxl\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .xxl\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .xxl\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .xxl\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .xxl\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .xxl\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .xxl\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .xxl\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .xxl\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .xxl\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .xxl\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .xxl\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .xxl\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .xxl\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .xxl\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .xxl\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .xxl\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .xxl\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .xxl\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .xxl\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .xxl\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .xxl\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .xxl\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .xxl\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .xxl\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .xxl\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .xxl\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .xxl\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .xxl\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .xxl\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .xxl\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .xxl\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .xxl\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .xxl\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .xxl\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .xxl\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .xxl\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .xxl\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .xxl\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .xxl\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .xxl\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .xxl\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .xxl\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .xxl\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .xxl\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .xxl\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .xxl\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .xxl\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .xxl\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .xxl\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .xxl\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .xxl\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .xxl\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .xxl\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .xxl\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .xxl\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .xxl\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .xxl\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .xxl\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .xxl\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .xxl\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .xxl\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .xxl\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .xxl\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .xxl\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .xxl\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .xxl\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .xxl\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .xxl\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .xxl\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .xxl\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .xxl\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .xxl\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .xxl\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .xxl\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .xxl\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .xxl\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .xxl\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .xxl\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .xxl\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .xxl\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .xxl\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .xxl\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .xxl\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .xxl\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .xxl\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .xxl\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .xxl\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .xxl\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .xxl\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .xxl\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .xxl\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .xxl\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .xxl\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .xxl\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .xxl\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .xxl\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .xxl\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .xxl\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xxl\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .xxl\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .xxl\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .xxl\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .xxl\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .xxl\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .xxl\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .xxl\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .xxl\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .xxl\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .xxl\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .xxl\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .xxl\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xxl\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xxl\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .xxl\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xxl\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xxl\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .xxl\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .xxl\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .xxl\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .xxl\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .xxl\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .xxl\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .xxl\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .xxl\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .xxl\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .xxl\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .xxl\:container{
      max-width: 576px;
    }
  }

  @media (min-width: 768px){
    .xxl\:container{
      max-width: 768px;
    }
  }

  @media (min-width: 992px){
    .xxl\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .xxl\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .xxl\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .xxl\:container{
      max-width: 1920px;
    }
  }
}

@media (min-width: 1920px){
  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\:space-y-36 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(9rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(9rem * var(--space-y-reverse));
  }

  .hd\:space-x-36 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(9rem * var(--space-x-reverse));
    margin-left: calc(9rem * calc(1 - var(--space-x-reverse)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\:space-y-44 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(11rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(11rem * var(--space-y-reverse));
  }

  .hd\:space-x-44 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(11rem * var(--space-x-reverse));
    margin-left: calc(11rem * calc(1 - var(--space-x-reverse)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-space-y-36 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-9rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-9rem * var(--space-y-reverse));
  }

  .hd\:-space-x-36 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-9rem * var(--space-x-reverse));
    margin-left: calc(-9rem * calc(1 - var(--space-x-reverse)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-space-y-44 > :not(template) ~ :not(template){
    --space-y-reverse: 0;
    margin-top: calc(-11rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(-11rem * var(--space-y-reverse));
  }

  .hd\:-space-x-44 > :not(template) ~ :not(template){
    --space-x-reverse: 0;
    margin-right: calc(-11rem * var(--space-x-reverse));
    margin-left: calc(-11rem * calc(1 - var(--space-x-reverse)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:-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));
  }

  .hd\:-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)));
  }

  .hd\:space-y-reverse > :not(template) ~ :not(template){
    --space-y-reverse: 1;
  }

  .hd\:space-x-reverse > :not(template) ~ :not(template){
    --space-x-reverse: 1;
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\: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));
  }

  .hd\: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)));
  }

  .hd\:divide-y-reverse > :not(template) ~ :not(template){
    --divide-y-reverse: 1;
  }

  .hd\:divide-x-reverse > :not(template) ~ :not(template){
    --divide-x-reverse: 1;
  }

  .hd\:divide-border > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--divide-opacity));
  }

  .hd\:divide-form > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .hd\:divide-form-active > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .hd\:divide-transparent > :not(template) ~ :not(template){
    border-color: transparent;
  }

  .hd\:divide-black > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--divide-opacity));
  }

  .hd\:divide-grey-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .hd\:divide-grey-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--divide-opacity));
  }

  .hd\:divide-grey-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--divide-opacity));
  }

  .hd\:divide-grey > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--divide-opacity));
  }

  .hd\:divide-grey-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--divide-opacity));
  }

  .hd\:divide-grey-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--divide-opacity));
  }

  .hd\:divide-grey-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--divide-opacity));
  }

  .hd\:divide-white > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--divide-opacity));
  }

  .hd\:divide-red > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--divide-opacity));
  }

  .hd\:divide-green > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--divide-opacity));
  }

  .hd\:divide-blue > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--divide-opacity));
  }

  .hd\:divide-orange > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--divide-opacity));
  }

  .hd\:divide-primary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--divide-opacity));
  }

  .hd\:divide-primary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--divide-opacity));
  }

  .hd\:divide-primary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--divide-opacity));
  }

  .hd\:divide-primary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--divide-opacity));
  }

  .hd\:divide-primary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--divide-opacity));
  }

  .hd\:divide-primary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--divide-opacity));
  }

  .hd\:divide-primary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--divide-opacity));
  }

  .hd\:divide-secondary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--divide-opacity));
  }

  .hd\:divide-secondary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--divide-opacity));
  }

  .hd\:divide-secondary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--divide-opacity));
  }

  .hd\:divide-secondary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--divide-opacity));
  }

  .hd\:divide-secondary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--divide-opacity));
  }

  .hd\:divide-secondary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--divide-opacity));
  }

  .hd\:divide-secondary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--divide-opacity));
  }

  .hd\:divide-tertiary-darkest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--divide-opacity));
  }

  .hd\:divide-tertiary-darker > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--divide-opacity));
  }

  .hd\:divide-tertiary-dark > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--divide-opacity));
  }

  .hd\:divide-tertiary > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--divide-opacity));
  }

  .hd\:divide-tertiary-light > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--divide-opacity));
  }

  .hd\:divide-tertiary-lighter > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--divide-opacity));
  }

  .hd\:divide-tertiary-lightest > :not(template) ~ :not(template){
    --divide-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--divide-opacity));
  }

  .hd\:divide-solid > :not(template) ~ :not(template){
    border-style: solid;
  }

  .hd\:divide-dashed > :not(template) ~ :not(template){
    border-style: dashed;
  }

  .hd\:divide-dotted > :not(template) ~ :not(template){
    border-style: dotted;
  }

  .hd\:divide-double > :not(template) ~ :not(template){
    border-style: double;
  }

  .hd\:divide-none > :not(template) ~ :not(template){
    border-style: none;
  }

  .hd\:divide-opacity-0 > :not(template) ~ :not(template){
    --divide-opacity: 0;
  }

  .hd\:divide-opacity-25 > :not(template) ~ :not(template){
    --divide-opacity: 0.25;
  }

  .hd\:divide-opacity-50 > :not(template) ~ :not(template){
    --divide-opacity: 0.5;
  }

  .hd\:divide-opacity-75 > :not(template) ~ :not(template){
    --divide-opacity: 0.75;
  }

  .hd\:divide-opacity-100 > :not(template) ~ :not(template){
    --divide-opacity: 1;
  }

  .hd\: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;
  }

  .hd\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .hd\: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;
  }

  .hd\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .hd\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .hd\:bg-fixed{
    background-attachment: fixed;
  }

  .hd\:bg-local{
    background-attachment: local;
  }

  .hd\:bg-scroll{
    background-attachment: scroll;
  }

  .hd\:bg-clip-border{
    background-clip: border-box;
  }

  .hd\:bg-clip-padding{
    background-clip: padding-box;
  }

  .hd\:bg-clip-content{
    background-clip: content-box;
  }

  .hd\:bg-clip-text{
    background-clip: text;
  }

  .hd\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .hd\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:bg-transparent{
    background-color: transparent;
  }

  .hd\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .hd\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .hd\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .hd\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .hd\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .hd\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .hd\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .hd\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .hd\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .hd\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .hd\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .hd\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .hd\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .hd\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .hd\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .hd\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .hd\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .hd\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .hd\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .hd\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .hd\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .hd\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .hd\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .hd\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .hd\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .hd\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .hd\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .hd\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .hd\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .hd\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .hd\:hover\:bg-border:hover{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .hd\:hover\:bg-form:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:hover\:bg-form-active:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .hd\:hover\:bg-black:hover{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey-darkest:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey-darker:hover{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey-dark:hover{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey:hover{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey-light:hover{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey-lighter:hover{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .hd\:hover\:bg-grey-lightest:hover{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .hd\:hover\:bg-white:hover{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .hd\:hover\:bg-red:hover{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .hd\:hover\:bg-green:hover{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .hd\:hover\:bg-blue:hover{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .hd\:hover\:bg-orange:hover{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary-darkest:hover{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary-darker:hover{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary-dark:hover{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary:hover{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary-light:hover{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary-lighter:hover{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .hd\:hover\:bg-primary-lightest:hover{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary-darkest:hover{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary-darker:hover{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary-dark:hover{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary:hover{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary-light:hover{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary-lighter:hover{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .hd\:hover\:bg-secondary-lightest:hover{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary-darkest:hover{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary-darker:hover{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary-dark:hover{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary:hover{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary-light:hover{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary-lighter:hover{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .hd\:hover\:bg-tertiary-lightest:hover{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .hd\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .hd\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .hd\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .hd\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .hd\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .hd\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .hd\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .hd\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .hd\:focus\:bg-border:focus{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .hd\:focus\:bg-form:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:focus\:bg-form-active:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .hd\:focus\:bg-black:focus{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-darkest:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-darker:focus{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-dark:focus{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey:focus{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-light:focus{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-lighter:focus{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .hd\:focus\:bg-grey-lightest:focus{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .hd\:focus\:bg-white:focus{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .hd\:focus\:bg-red:focus{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .hd\:focus\:bg-green:focus{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .hd\:focus\:bg-blue:focus{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .hd\:focus\:bg-orange:focus{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-darkest:focus{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-darker:focus{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-dark:focus{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary:focus{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-light:focus{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-lighter:focus{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .hd\:focus\:bg-primary-lightest:focus{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-darkest:focus{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-darker:focus{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-dark:focus{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary:focus{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-light:focus{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-lighter:focus{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .hd\:focus\:bg-secondary-lightest:focus{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-darkest:focus{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-darker:focus{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-dark:focus{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary:focus{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-light:focus{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-lighter:focus{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .hd\:focus\:bg-tertiary-lightest:focus{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-border{
    --bg-opacity: 1;
    background-color: #E6EBF5;
    background-color: rgba(230, 235, 245, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-form{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-form-active{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .hd\:group-hover\:bg-black{
    --bg-opacity: 1;
    background-color: #212529;
    background-color: rgba(33, 37, 41, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey-darker{
    --bg-opacity: 1;
    background-color: #9AA5C0;
    background-color: rgba(154, 165, 192, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey-dark{
    --bg-opacity: 1;
    background-color: #42505C;
    background-color: rgba(66, 80, 92, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey{
    --bg-opacity: 1;
    background-color: #79828B;
    background-color: rgba(121, 130, 139, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey-light{
    --bg-opacity: 1;
    background-color: #B3BCC5;
    background-color: rgba(179, 188, 197, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter{
    --bg-opacity: 1;
    background-color: #DEE4E9;
    background-color: rgba(222, 228, 233, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest{
    --bg-opacity: 1;
    background-color: #F4F6F9;
    background-color: rgba(244, 246, 249, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-white{
    --bg-opacity: 1;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-red{
    --bg-opacity: 1;
    background-color: #D31A08;
    background-color: rgba(211, 26, 8, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-green{
    --bg-opacity: 1;
    background-color: #66BB08;
    background-color: rgba(102, 187, 8, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-blue{
    --bg-opacity: 1;
    background-color: #1FA8E2;
    background-color: rgba(31, 168, 226, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-orange{
    --bg-opacity: 1;
    background-color: #F7940E;
    background-color: rgba(247, 148, 14, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest{
    --bg-opacity: 1;
    background-color: #530f12;
    background-color: rgba(83, 15, 18, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary-darker{
    --bg-opacity: 1;
    background-color: #7c171b;
    background-color: rgba(124, 23, 27, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary-dark{
    --bg-opacity: 1;
    background-color: #a61e24;
    background-color: rgba(166, 30, 36, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary{
    --bg-opacity: 1;
    background-color: #cf262d;
    background-color: rgba(207, 38, 45, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary-light{
    --bg-opacity: 1;
    background-color: #d95157;
    background-color: rgba(217, 81, 87, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter{
    --bg-opacity: 1;
    background-color: #e27d81;
    background-color: rgba(226, 125, 129, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest{
    --bg-opacity: 1;
    background-color: #eca8ab;
    background-color: rgba(236, 168, 171, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest{
    --bg-opacity: 1;
    background-color: #3e4525;
    background-color: rgba(62, 69, 37, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker{
    --bg-opacity: 1;
    background-color: #5e6837;
    background-color: rgba(94, 104, 55, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark{
    --bg-opacity: 1;
    background-color: #7d8a4a;
    background-color: rgba(125, 138, 74, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary{
    --bg-opacity: 1;
    background-color: #9cad5c;
    background-color: rgba(156, 173, 92, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary-light{
    --bg-opacity: 1;
    background-color: #b0bd7d;
    background-color: rgba(176, 189, 125, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter{
    --bg-opacity: 1;
    background-color: #c4ce9d;
    background-color: rgba(196, 206, 157, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest{
    --bg-opacity: 1;
    background-color: #d7debe;
    background-color: rgba(215, 222, 190, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest{
    --bg-opacity: 1;
    background-color: #0f2f21;
    background-color: rgba(15, 47, 33, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker{
    --bg-opacity: 1;
    background-color: #1a4731;
    background-color: rgba(26, 71, 49, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark{
    --bg-opacity: 1;
    background-color: #1f9d55;
    background-color: rgba(31, 157, 85, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary{
    --bg-opacity: 1;
    background-color: #FFC500;
    background-color: rgba(255, 197, 0, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light{
    --bg-opacity: 1;
    background-color: #51d88a;
    background-color: rgba(81, 216, 138, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter{
    --bg-opacity: 1;
    background-color: #a2f5bf;
    background-color: rgba(162, 245, 191, var(--bg-opacity));
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest{
    --bg-opacity: 1;
    background-color: #e3fcec;
    background-color: rgba(227, 252, 236, var(--bg-opacity));
  }

  .hd\:bg-none{
    background-image: none;
  }

  .hd\:bg-gradient-to-t{
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-tr{
    background-image: -webkit-gradient(linear, left bottom, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top right, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-r{
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to right, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-br{
    background-image: -webkit-gradient(linear, left top, right bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom right, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-b{
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-bl{
    background-image: -webkit-gradient(linear, right top, left bottom, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to bottom left, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-l{
    background-image: -webkit-gradient(linear, right top, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to left, var(--gradient-color-stops));
  }

  .hd\:bg-gradient-to-tl{
    background-image: -webkit-gradient(linear, right bottom, left top, from(var(--gradient-color-stops)));
    background-image: linear-gradient(to top left, var(--gradient-color-stops));
  }

  .hd\:from-border{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .hd\:from-form{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:from-form-active{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:from-transparent{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .hd\:from-black{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .hd\:from-grey-darkest{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:from-grey-darker{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:from-grey-dark{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:from-grey{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:from-grey-light{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .hd\:from-grey-lighter{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .hd\:from-grey-lightest{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .hd\:from-white{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .hd\:from-red{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .hd\:from-green{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .hd\:from-blue{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .hd\:from-orange{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .hd\:from-primary-darkest{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .hd\:from-primary-darker{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .hd\:from-primary-dark{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .hd\:from-primary{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .hd\:from-primary-light{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .hd\:from-primary-lighter{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .hd\:from-primary-lightest{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .hd\:from-secondary-darkest{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .hd\:from-secondary-darker{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .hd\:from-secondary-dark{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .hd\:from-secondary{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .hd\:from-secondary-light{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .hd\:from-secondary-lighter{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .hd\:from-secondary-lightest{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .hd\:from-tertiary-darkest{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .hd\:from-tertiary-darker{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .hd\:from-tertiary-dark{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .hd\:from-tertiary{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .hd\:from-tertiary-light{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .hd\:from-tertiary-lighter{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .hd\:from-tertiary-lightest{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .hd\:via-border{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .hd\:via-form{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:via-form-active{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\: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));
  }

  .hd\:via-black{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .hd\:via-grey-darkest{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:via-grey-darker{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:via-grey-dark{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:via-grey{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:via-grey-light{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .hd\:via-grey-lighter{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .hd\:via-grey-lightest{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .hd\: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));
  }

  .hd\:via-red{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .hd\:via-green{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .hd\:via-blue{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .hd\:via-orange{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .hd\:via-primary-darkest{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .hd\:via-primary-darker{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .hd\:via-primary-dark{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .hd\:via-primary{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .hd\:via-primary-light{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .hd\:via-primary-lighter{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .hd\:via-primary-lightest{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .hd\:via-secondary-darkest{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .hd\:via-secondary-darker{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .hd\:via-secondary-dark{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .hd\:via-secondary{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .hd\:via-secondary-light{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .hd\:via-secondary-lighter{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .hd\:via-secondary-lightest{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .hd\:via-tertiary-darkest{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .hd\:via-tertiary-darker{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .hd\:via-tertiary-dark{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .hd\:via-tertiary{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .hd\:via-tertiary-light{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .hd\:via-tertiary-lighter{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .hd\:via-tertiary-lightest{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .hd\:to-border{
    --gradient-to-color: #E6EBF5;
  }

  .hd\:to-form{
    --gradient-to-color: #79828B;
  }

  .hd\:to-form-active{
    --gradient-to-color: #42505C;
  }

  .hd\:to-transparent{
    --gradient-to-color: transparent;
  }

  .hd\:to-black{
    --gradient-to-color: #212529;
  }

  .hd\:to-grey-darkest{
    --gradient-to-color: #9AA5C0;
  }

  .hd\:to-grey-darker{
    --gradient-to-color: #9AA5C0;
  }

  .hd\:to-grey-dark{
    --gradient-to-color: #42505C;
  }

  .hd\:to-grey{
    --gradient-to-color: #79828B;
  }

  .hd\:to-grey-light{
    --gradient-to-color: #B3BCC5;
  }

  .hd\:to-grey-lighter{
    --gradient-to-color: #DEE4E9;
  }

  .hd\:to-grey-lightest{
    --gradient-to-color: #F4F6F9;
  }

  .hd\:to-white{
    --gradient-to-color: #ffffff;
  }

  .hd\:to-red{
    --gradient-to-color: #D31A08;
  }

  .hd\:to-green{
    --gradient-to-color: #66BB08;
  }

  .hd\:to-blue{
    --gradient-to-color: #1FA8E2;
  }

  .hd\:to-orange{
    --gradient-to-color: #F7940E;
  }

  .hd\:to-primary-darkest{
    --gradient-to-color: #530f12;
  }

  .hd\:to-primary-darker{
    --gradient-to-color: #7c171b;
  }

  .hd\:to-primary-dark{
    --gradient-to-color: #a61e24;
  }

  .hd\:to-primary{
    --gradient-to-color: #cf262d;
  }

  .hd\:to-primary-light{
    --gradient-to-color: #d95157;
  }

  .hd\:to-primary-lighter{
    --gradient-to-color: #e27d81;
  }

  .hd\:to-primary-lightest{
    --gradient-to-color: #eca8ab;
  }

  .hd\:to-secondary-darkest{
    --gradient-to-color: #3e4525;
  }

  .hd\:to-secondary-darker{
    --gradient-to-color: #5e6837;
  }

  .hd\:to-secondary-dark{
    --gradient-to-color: #7d8a4a;
  }

  .hd\:to-secondary{
    --gradient-to-color: #9cad5c;
  }

  .hd\:to-secondary-light{
    --gradient-to-color: #b0bd7d;
  }

  .hd\:to-secondary-lighter{
    --gradient-to-color: #c4ce9d;
  }

  .hd\:to-secondary-lightest{
    --gradient-to-color: #d7debe;
  }

  .hd\:to-tertiary-darkest{
    --gradient-to-color: #0f2f21;
  }

  .hd\:to-tertiary-darker{
    --gradient-to-color: #1a4731;
  }

  .hd\:to-tertiary-dark{
    --gradient-to-color: #1f9d55;
  }

  .hd\:to-tertiary{
    --gradient-to-color: #FFC500;
  }

  .hd\:to-tertiary-light{
    --gradient-to-color: #51d88a;
  }

  .hd\:to-tertiary-lighter{
    --gradient-to-color: #a2f5bf;
  }

  .hd\:to-tertiary-lightest{
    --gradient-to-color: #e3fcec;
  }

  .hd\:hover\:from-border:hover{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .hd\:hover\:from-form:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:hover\:from-form-active:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:hover\:from-transparent:hover{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .hd\:hover\:from-black:hover{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .hd\:hover\:from-grey-darkest:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:hover\:from-grey-darker:hover{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:hover\:from-grey-dark:hover{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:hover\:from-grey:hover{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:hover\:from-grey-light:hover{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .hd\:hover\:from-grey-lighter:hover{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .hd\:hover\:from-grey-lightest:hover{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .hd\:hover\:from-white:hover{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .hd\:hover\:from-red:hover{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .hd\:hover\:from-green:hover{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .hd\:hover\:from-blue:hover{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .hd\:hover\:from-orange:hover{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .hd\:hover\:from-primary-darkest:hover{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .hd\:hover\:from-primary-darker:hover{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .hd\:hover\:from-primary-dark:hover{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .hd\:hover\:from-primary:hover{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .hd\:hover\:from-primary-light:hover{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .hd\:hover\:from-primary-lighter:hover{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .hd\:hover\:from-primary-lightest:hover{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .hd\:hover\:from-secondary-darkest:hover{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .hd\:hover\:from-secondary-darker:hover{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .hd\:hover\:from-secondary-dark:hover{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .hd\:hover\:from-secondary:hover{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .hd\:hover\:from-secondary-light:hover{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .hd\:hover\:from-secondary-lighter:hover{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .hd\:hover\:from-secondary-lightest:hover{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .hd\:hover\:from-tertiary-darkest:hover{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .hd\:hover\:from-tertiary-darker:hover{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .hd\:hover\:from-tertiary-dark:hover{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .hd\:hover\:from-tertiary:hover{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .hd\:hover\:from-tertiary-light:hover{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .hd\:hover\:from-tertiary-lighter:hover{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .hd\:hover\:from-tertiary-lightest:hover{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .hd\:hover\:via-border:hover{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .hd\:hover\:via-form:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:hover\:via-form-active:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\: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));
  }

  .hd\:hover\:via-black:hover{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .hd\:hover\:via-grey-darkest:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:hover\:via-grey-darker:hover{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:hover\:via-grey-dark:hover{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:hover\:via-grey:hover{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:hover\:via-grey-light:hover{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .hd\:hover\:via-grey-lighter:hover{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .hd\:hover\:via-grey-lightest:hover{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .hd\: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));
  }

  .hd\:hover\:via-red:hover{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .hd\:hover\:via-green:hover{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .hd\:hover\:via-blue:hover{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .hd\:hover\:via-orange:hover{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .hd\:hover\:via-primary-darkest:hover{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .hd\:hover\:via-primary-darker:hover{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .hd\:hover\:via-primary-dark:hover{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .hd\:hover\:via-primary:hover{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .hd\:hover\:via-primary-light:hover{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .hd\:hover\:via-primary-lighter:hover{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .hd\:hover\:via-primary-lightest:hover{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .hd\:hover\:via-secondary-darkest:hover{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .hd\:hover\:via-secondary-darker:hover{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .hd\:hover\:via-secondary-dark:hover{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .hd\:hover\:via-secondary:hover{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .hd\:hover\:via-secondary-light:hover{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .hd\:hover\:via-secondary-lighter:hover{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .hd\:hover\:via-secondary-lightest:hover{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .hd\:hover\:via-tertiary-darkest:hover{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .hd\:hover\:via-tertiary-darker:hover{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .hd\:hover\:via-tertiary-dark:hover{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .hd\:hover\:via-tertiary:hover{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .hd\:hover\:via-tertiary-light:hover{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .hd\:hover\:via-tertiary-lighter:hover{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .hd\:hover\:via-tertiary-lightest:hover{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .hd\:hover\:to-border:hover{
    --gradient-to-color: #E6EBF5;
  }

  .hd\:hover\:to-form:hover{
    --gradient-to-color: #79828B;
  }

  .hd\:hover\:to-form-active:hover{
    --gradient-to-color: #42505C;
  }

  .hd\:hover\:to-transparent:hover{
    --gradient-to-color: transparent;
  }

  .hd\:hover\:to-black:hover{
    --gradient-to-color: #212529;
  }

  .hd\:hover\:to-grey-darkest:hover{
    --gradient-to-color: #9AA5C0;
  }

  .hd\:hover\:to-grey-darker:hover{
    --gradient-to-color: #9AA5C0;
  }

  .hd\:hover\:to-grey-dark:hover{
    --gradient-to-color: #42505C;
  }

  .hd\:hover\:to-grey:hover{
    --gradient-to-color: #79828B;
  }

  .hd\:hover\:to-grey-light:hover{
    --gradient-to-color: #B3BCC5;
  }

  .hd\:hover\:to-grey-lighter:hover{
    --gradient-to-color: #DEE4E9;
  }

  .hd\:hover\:to-grey-lightest:hover{
    --gradient-to-color: #F4F6F9;
  }

  .hd\:hover\:to-white:hover{
    --gradient-to-color: #ffffff;
  }

  .hd\:hover\:to-red:hover{
    --gradient-to-color: #D31A08;
  }

  .hd\:hover\:to-green:hover{
    --gradient-to-color: #66BB08;
  }

  .hd\:hover\:to-blue:hover{
    --gradient-to-color: #1FA8E2;
  }

  .hd\:hover\:to-orange:hover{
    --gradient-to-color: #F7940E;
  }

  .hd\:hover\:to-primary-darkest:hover{
    --gradient-to-color: #530f12;
  }

  .hd\:hover\:to-primary-darker:hover{
    --gradient-to-color: #7c171b;
  }

  .hd\:hover\:to-primary-dark:hover{
    --gradient-to-color: #a61e24;
  }

  .hd\:hover\:to-primary:hover{
    --gradient-to-color: #cf262d;
  }

  .hd\:hover\:to-primary-light:hover{
    --gradient-to-color: #d95157;
  }

  .hd\:hover\:to-primary-lighter:hover{
    --gradient-to-color: #e27d81;
  }

  .hd\:hover\:to-primary-lightest:hover{
    --gradient-to-color: #eca8ab;
  }

  .hd\:hover\:to-secondary-darkest:hover{
    --gradient-to-color: #3e4525;
  }

  .hd\:hover\:to-secondary-darker:hover{
    --gradient-to-color: #5e6837;
  }

  .hd\:hover\:to-secondary-dark:hover{
    --gradient-to-color: #7d8a4a;
  }

  .hd\:hover\:to-secondary:hover{
    --gradient-to-color: #9cad5c;
  }

  .hd\:hover\:to-secondary-light:hover{
    --gradient-to-color: #b0bd7d;
  }

  .hd\:hover\:to-secondary-lighter:hover{
    --gradient-to-color: #c4ce9d;
  }

  .hd\:hover\:to-secondary-lightest:hover{
    --gradient-to-color: #d7debe;
  }

  .hd\:hover\:to-tertiary-darkest:hover{
    --gradient-to-color: #0f2f21;
  }

  .hd\:hover\:to-tertiary-darker:hover{
    --gradient-to-color: #1a4731;
  }

  .hd\:hover\:to-tertiary-dark:hover{
    --gradient-to-color: #1f9d55;
  }

  .hd\:hover\:to-tertiary:hover{
    --gradient-to-color: #FFC500;
  }

  .hd\:hover\:to-tertiary-light:hover{
    --gradient-to-color: #51d88a;
  }

  .hd\:hover\:to-tertiary-lighter:hover{
    --gradient-to-color: #a2f5bf;
  }

  .hd\:hover\:to-tertiary-lightest:hover{
    --gradient-to-color: #e3fcec;
  }

  .hd\:focus\:from-border:focus{
    --gradient-from-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .hd\:focus\:from-form:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:focus\:from-form-active:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:focus\:from-transparent:focus{
    --gradient-from-color: transparent;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(0, 0, 0, 0));
  }

  .hd\:focus\:from-black:focus{
    --gradient-from-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .hd\:focus\:from-grey-darkest:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:focus\:from-grey-darker:focus{
    --gradient-from-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:focus\:from-grey-dark:focus{
    --gradient-from-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:focus\:from-grey:focus{
    --gradient-from-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:focus\:from-grey-light:focus{
    --gradient-from-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .hd\:focus\:from-grey-lighter:focus{
    --gradient-from-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .hd\:focus\:from-grey-lightest:focus{
    --gradient-from-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .hd\:focus\:from-white:focus{
    --gradient-from-color: #ffffff;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 255, 255, 0));
  }

  .hd\:focus\:from-red:focus{
    --gradient-from-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .hd\:focus\:from-green:focus{
    --gradient-from-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .hd\:focus\:from-blue:focus{
    --gradient-from-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .hd\:focus\:from-orange:focus{
    --gradient-from-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .hd\:focus\:from-primary-darkest:focus{
    --gradient-from-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .hd\:focus\:from-primary-darker:focus{
    --gradient-from-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .hd\:focus\:from-primary-dark:focus{
    --gradient-from-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .hd\:focus\:from-primary:focus{
    --gradient-from-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .hd\:focus\:from-primary-light:focus{
    --gradient-from-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .hd\:focus\:from-primary-lighter:focus{
    --gradient-from-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .hd\:focus\:from-primary-lightest:focus{
    --gradient-from-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .hd\:focus\:from-secondary-darkest:focus{
    --gradient-from-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .hd\:focus\:from-secondary-darker:focus{
    --gradient-from-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .hd\:focus\:from-secondary-dark:focus{
    --gradient-from-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .hd\:focus\:from-secondary:focus{
    --gradient-from-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .hd\:focus\:from-secondary-light:focus{
    --gradient-from-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .hd\:focus\:from-secondary-lighter:focus{
    --gradient-from-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .hd\:focus\:from-secondary-lightest:focus{
    --gradient-from-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .hd\:focus\:from-tertiary-darkest:focus{
    --gradient-from-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .hd\:focus\:from-tertiary-darker:focus{
    --gradient-from-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .hd\:focus\:from-tertiary-dark:focus{
    --gradient-from-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .hd\:focus\:from-tertiary:focus{
    --gradient-from-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .hd\:focus\:from-tertiary-light:focus{
    --gradient-from-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .hd\:focus\:from-tertiary-lighter:focus{
    --gradient-from-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .hd\:focus\:from-tertiary-lightest:focus{
    --gradient-from-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .hd\:focus\:via-border:focus{
    --gradient-via-color: #E6EBF5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(230, 235, 245, 0));
  }

  .hd\:focus\:via-form:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:focus\:via-form-active:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\: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));
  }

  .hd\:focus\:via-black:focus{
    --gradient-via-color: #212529;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(33, 37, 41, 0));
  }

  .hd\:focus\:via-grey-darkest:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:focus\:via-grey-darker:focus{
    --gradient-via-color: #9AA5C0;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(154, 165, 192, 0));
  }

  .hd\:focus\:via-grey-dark:focus{
    --gradient-via-color: #42505C;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(66, 80, 92, 0));
  }

  .hd\:focus\:via-grey:focus{
    --gradient-via-color: #79828B;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(121, 130, 139, 0));
  }

  .hd\:focus\:via-grey-light:focus{
    --gradient-via-color: #B3BCC5;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(179, 188, 197, 0));
  }

  .hd\:focus\:via-grey-lighter:focus{
    --gradient-via-color: #DEE4E9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(222, 228, 233, 0));
  }

  .hd\:focus\:via-grey-lightest:focus{
    --gradient-via-color: #F4F6F9;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(244, 246, 249, 0));
  }

  .hd\: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));
  }

  .hd\:focus\:via-red:focus{
    --gradient-via-color: #D31A08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(211, 26, 8, 0));
  }

  .hd\:focus\:via-green:focus{
    --gradient-via-color: #66BB08;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(102, 187, 8, 0));
  }

  .hd\:focus\:via-blue:focus{
    --gradient-via-color: #1FA8E2;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 168, 226, 0));
  }

  .hd\:focus\:via-orange:focus{
    --gradient-via-color: #F7940E;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(247, 148, 14, 0));
  }

  .hd\:focus\:via-primary-darkest:focus{
    --gradient-via-color: #530f12;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(83, 15, 18, 0));
  }

  .hd\:focus\:via-primary-darker:focus{
    --gradient-via-color: #7c171b;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(124, 23, 27, 0));
  }

  .hd\:focus\:via-primary-dark:focus{
    --gradient-via-color: #a61e24;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(166, 30, 36, 0));
  }

  .hd\:focus\:via-primary:focus{
    --gradient-via-color: #cf262d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(207, 38, 45, 0));
  }

  .hd\:focus\:via-primary-light:focus{
    --gradient-via-color: #d95157;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(217, 81, 87, 0));
  }

  .hd\:focus\:via-primary-lighter:focus{
    --gradient-via-color: #e27d81;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(226, 125, 129, 0));
  }

  .hd\:focus\:via-primary-lightest:focus{
    --gradient-via-color: #eca8ab;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(236, 168, 171, 0));
  }

  .hd\:focus\:via-secondary-darkest:focus{
    --gradient-via-color: #3e4525;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(62, 69, 37, 0));
  }

  .hd\:focus\:via-secondary-darker:focus{
    --gradient-via-color: #5e6837;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(94, 104, 55, 0));
  }

  .hd\:focus\:via-secondary-dark:focus{
    --gradient-via-color: #7d8a4a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(125, 138, 74, 0));
  }

  .hd\:focus\:via-secondary:focus{
    --gradient-via-color: #9cad5c;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(156, 173, 92, 0));
  }

  .hd\:focus\:via-secondary-light:focus{
    --gradient-via-color: #b0bd7d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(176, 189, 125, 0));
  }

  .hd\:focus\:via-secondary-lighter:focus{
    --gradient-via-color: #c4ce9d;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(196, 206, 157, 0));
  }

  .hd\:focus\:via-secondary-lightest:focus{
    --gradient-via-color: #d7debe;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(215, 222, 190, 0));
  }

  .hd\:focus\:via-tertiary-darkest:focus{
    --gradient-via-color: #0f2f21;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(15, 47, 33, 0));
  }

  .hd\:focus\:via-tertiary-darker:focus{
    --gradient-via-color: #1a4731;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(26, 71, 49, 0));
  }

  .hd\:focus\:via-tertiary-dark:focus{
    --gradient-via-color: #1f9d55;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(31, 157, 85, 0));
  }

  .hd\:focus\:via-tertiary:focus{
    --gradient-via-color: #FFC500;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(255, 197, 0, 0));
  }

  .hd\:focus\:via-tertiary-light:focus{
    --gradient-via-color: #51d88a;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(81, 216, 138, 0));
  }

  .hd\:focus\:via-tertiary-lighter:focus{
    --gradient-via-color: #a2f5bf;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(162, 245, 191, 0));
  }

  .hd\:focus\:via-tertiary-lightest:focus{
    --gradient-via-color: #e3fcec;
    --gradient-color-stops: var(--gradient-from-color), var(--gradient-via-color), var(--gradient-to-color, rgba(227, 252, 236, 0));
  }

  .hd\:focus\:to-border:focus{
    --gradient-to-color: #E6EBF5;
  }

  .hd\:focus\:to-form:focus{
    --gradient-to-color: #79828B;
  }

  .hd\:focus\:to-form-active:focus{
    --gradient-to-color: #42505C;
  }

  .hd\:focus\:to-transparent:focus{
    --gradient-to-color: transparent;
  }

  .hd\:focus\:to-black:focus{
    --gradient-to-color: #212529;
  }

  .hd\:focus\:to-grey-darkest:focus{
    --gradient-to-color: #9AA5C0;
  }

  .hd\:focus\:to-grey-darker:focus{
    --gradient-to-color: #9AA5C0;
  }

  .hd\:focus\:to-grey-dark:focus{
    --gradient-to-color: #42505C;
  }

  .hd\:focus\:to-grey:focus{
    --gradient-to-color: #79828B;
  }

  .hd\:focus\:to-grey-light:focus{
    --gradient-to-color: #B3BCC5;
  }

  .hd\:focus\:to-grey-lighter:focus{
    --gradient-to-color: #DEE4E9;
  }

  .hd\:focus\:to-grey-lightest:focus{
    --gradient-to-color: #F4F6F9;
  }

  .hd\:focus\:to-white:focus{
    --gradient-to-color: #ffffff;
  }

  .hd\:focus\:to-red:focus{
    --gradient-to-color: #D31A08;
  }

  .hd\:focus\:to-green:focus{
    --gradient-to-color: #66BB08;
  }

  .hd\:focus\:to-blue:focus{
    --gradient-to-color: #1FA8E2;
  }

  .hd\:focus\:to-orange:focus{
    --gradient-to-color: #F7940E;
  }

  .hd\:focus\:to-primary-darkest:focus{
    --gradient-to-color: #530f12;
  }

  .hd\:focus\:to-primary-darker:focus{
    --gradient-to-color: #7c171b;
  }

  .hd\:focus\:to-primary-dark:focus{
    --gradient-to-color: #a61e24;
  }

  .hd\:focus\:to-primary:focus{
    --gradient-to-color: #cf262d;
  }

  .hd\:focus\:to-primary-light:focus{
    --gradient-to-color: #d95157;
  }

  .hd\:focus\:to-primary-lighter:focus{
    --gradient-to-color: #e27d81;
  }

  .hd\:focus\:to-primary-lightest:focus{
    --gradient-to-color: #eca8ab;
  }

  .hd\:focus\:to-secondary-darkest:focus{
    --gradient-to-color: #3e4525;
  }

  .hd\:focus\:to-secondary-darker:focus{
    --gradient-to-color: #5e6837;
  }

  .hd\:focus\:to-secondary-dark:focus{
    --gradient-to-color: #7d8a4a;
  }

  .hd\:focus\:to-secondary:focus{
    --gradient-to-color: #9cad5c;
  }

  .hd\:focus\:to-secondary-light:focus{
    --gradient-to-color: #b0bd7d;
  }

  .hd\:focus\:to-secondary-lighter:focus{
    --gradient-to-color: #c4ce9d;
  }

  .hd\:focus\:to-secondary-lightest:focus{
    --gradient-to-color: #d7debe;
  }

  .hd\:focus\:to-tertiary-darkest:focus{
    --gradient-to-color: #0f2f21;
  }

  .hd\:focus\:to-tertiary-darker:focus{
    --gradient-to-color: #1a4731;
  }

  .hd\:focus\:to-tertiary-dark:focus{
    --gradient-to-color: #1f9d55;
  }

  .hd\:focus\:to-tertiary:focus{
    --gradient-to-color: #FFC500;
  }

  .hd\:focus\:to-tertiary-light:focus{
    --gradient-to-color: #51d88a;
  }

  .hd\:focus\:to-tertiary-lighter:focus{
    --gradient-to-color: #a2f5bf;
  }

  .hd\:focus\:to-tertiary-lightest:focus{
    --gradient-to-color: #e3fcec;
  }

  .hd\:bg-opacity-0{
    --bg-opacity: 0;
  }

  .hd\:bg-opacity-25{
    --bg-opacity: 0.25;
  }

  .hd\:bg-opacity-50{
    --bg-opacity: 0.5;
  }

  .hd\:bg-opacity-75{
    --bg-opacity: 0.75;
  }

  .hd\:bg-opacity-100{
    --bg-opacity: 1;
  }

  .hd\:hover\:bg-opacity-0:hover{
    --bg-opacity: 0;
  }

  .hd\:hover\:bg-opacity-25:hover{
    --bg-opacity: 0.25;
  }

  .hd\:hover\:bg-opacity-50:hover{
    --bg-opacity: 0.5;
  }

  .hd\:hover\:bg-opacity-75:hover{
    --bg-opacity: 0.75;
  }

  .hd\:hover\:bg-opacity-100:hover{
    --bg-opacity: 1;
  }

  .hd\:focus\:bg-opacity-0:focus{
    --bg-opacity: 0;
  }

  .hd\:focus\:bg-opacity-25:focus{
    --bg-opacity: 0.25;
  }

  .hd\:focus\:bg-opacity-50:focus{
    --bg-opacity: 0.5;
  }

  .hd\:focus\:bg-opacity-75:focus{
    --bg-opacity: 0.75;
  }

  .hd\:focus\:bg-opacity-100:focus{
    --bg-opacity: 1;
  }

  .hd\:bg-bottom{
    background-position: bottom;
  }

  .hd\:bg-center{
    background-position: center;
  }

  .hd\:bg-left{
    background-position: left;
  }

  .hd\:bg-left-bottom{
    background-position: left bottom;
  }

  .hd\:bg-left-top{
    background-position: left top;
  }

  .hd\:bg-right{
    background-position: right;
  }

  .hd\:bg-right-bottom{
    background-position: right bottom;
  }

  .hd\:bg-right-top{
    background-position: right top;
  }

  .hd\:bg-top{
    background-position: top;
  }

  .hd\:bg-repeat{
    background-repeat: repeat;
  }

  .hd\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .hd\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .hd\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .hd\:bg-repeat-round{
    background-repeat: round;
  }

  .hd\:bg-repeat-space{
    background-repeat: space;
  }

  .hd\:bg-auto{
    background-size: auto;
  }

  .hd\:bg-cover{
    background-size: cover;
  }

  .hd\:bg-contain{
    background-size: contain;
  }

  .hd\:border-collapse{
    border-collapse: collapse;
  }

  .hd\:border-separate{
    border-collapse: separate;
  }

  .hd\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .hd\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:border-transparent{
    border-color: transparent;
  }

  .hd\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .hd\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .hd\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .hd\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .hd\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .hd\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .hd\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .hd\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .hd\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .hd\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .hd\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .hd\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .hd\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .hd\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .hd\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .hd\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .hd\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .hd\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .hd\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .hd\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .hd\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .hd\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .hd\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .hd\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .hd\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .hd\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .hd\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .hd\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .hd\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .hd\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .hd\:hover\:border-border:hover{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .hd\:hover\:border-form:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:hover\:border-form-active:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .hd\:hover\:border-black:hover{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .hd\:hover\:border-grey-darkest:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:hover\:border-grey-darker:hover{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:hover\:border-grey-dark:hover{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:hover\:border-grey:hover{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:hover\:border-grey-light:hover{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .hd\:hover\:border-grey-lighter:hover{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .hd\:hover\:border-grey-lightest:hover{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .hd\:hover\:border-white:hover{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .hd\:hover\:border-red:hover{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .hd\:hover\:border-green:hover{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .hd\:hover\:border-blue:hover{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .hd\:hover\:border-orange:hover{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .hd\:hover\:border-primary-darkest:hover{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .hd\:hover\:border-primary-darker:hover{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .hd\:hover\:border-primary-dark:hover{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .hd\:hover\:border-primary:hover{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .hd\:hover\:border-primary-light:hover{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .hd\:hover\:border-primary-lighter:hover{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .hd\:hover\:border-primary-lightest:hover{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .hd\:hover\:border-secondary-darkest:hover{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .hd\:hover\:border-secondary-darker:hover{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .hd\:hover\:border-secondary-dark:hover{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .hd\:hover\:border-secondary:hover{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .hd\:hover\:border-secondary-light:hover{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .hd\:hover\:border-secondary-lighter:hover{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .hd\:hover\:border-secondary-lightest:hover{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary-darkest:hover{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary-darker:hover{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary-dark:hover{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary:hover{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary-light:hover{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary-lighter:hover{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .hd\:hover\:border-tertiary-lightest:hover{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .hd\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .hd\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .hd\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .hd\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .hd\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .hd\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .hd\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .hd\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .hd\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .hd\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .hd\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .hd\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .hd\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .hd\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .hd\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .hd\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .hd\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .hd\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .hd\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .hd\:focus\:border-border:focus{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .hd\:focus\:border-form:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:focus\:border-form-active:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .hd\:focus\:border-black:focus{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .hd\:focus\:border-grey-darkest:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:focus\:border-grey-darker:focus{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .hd\:focus\:border-grey-dark:focus{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .hd\:focus\:border-grey:focus{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .hd\:focus\:border-grey-light:focus{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .hd\:focus\:border-grey-lighter:focus{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .hd\:focus\:border-grey-lightest:focus{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .hd\:focus\:border-white:focus{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .hd\:focus\:border-red:focus{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .hd\:focus\:border-green:focus{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .hd\:focus\:border-blue:focus{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .hd\:focus\:border-orange:focus{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .hd\:focus\:border-primary-darkest:focus{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .hd\:focus\:border-primary-darker:focus{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .hd\:focus\:border-primary-dark:focus{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .hd\:focus\:border-primary:focus{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .hd\:focus\:border-primary-light:focus{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .hd\:focus\:border-primary-lighter:focus{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .hd\:focus\:border-primary-lightest:focus{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-darkest:focus{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-darker:focus{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-dark:focus{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .hd\:focus\:border-secondary:focus{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-light:focus{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-lighter:focus{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .hd\:focus\:border-secondary-lightest:focus{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-darkest:focus{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-darker:focus{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-dark:focus{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary:focus{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-light:focus{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-lighter:focus{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .hd\:focus\:border-tertiary-lightest:focus{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-border{
    --border-opacity: 1;
    border-color: #E6EBF5;
    border-color: rgba(230, 235, 245, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-form{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-form-active{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .hd\:group-hover\:border-black{
    --border-opacity: 1;
    border-color: #212529;
    border-color: rgba(33, 37, 41, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey-darkest{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey-darker{
    --border-opacity: 1;
    border-color: #9AA5C0;
    border-color: rgba(154, 165, 192, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey-dark{
    --border-opacity: 1;
    border-color: #42505C;
    border-color: rgba(66, 80, 92, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey{
    --border-opacity: 1;
    border-color: #79828B;
    border-color: rgba(121, 130, 139, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey-light{
    --border-opacity: 1;
    border-color: #B3BCC5;
    border-color: rgba(179, 188, 197, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey-lighter{
    --border-opacity: 1;
    border-color: #DEE4E9;
    border-color: rgba(222, 228, 233, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-grey-lightest{
    --border-opacity: 1;
    border-color: #F4F6F9;
    border-color: rgba(244, 246, 249, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-white{
    --border-opacity: 1;
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-red{
    --border-opacity: 1;
    border-color: #D31A08;
    border-color: rgba(211, 26, 8, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-green{
    --border-opacity: 1;
    border-color: #66BB08;
    border-color: rgba(102, 187, 8, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-blue{
    --border-opacity: 1;
    border-color: #1FA8E2;
    border-color: rgba(31, 168, 226, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-orange{
    --border-opacity: 1;
    border-color: #F7940E;
    border-color: rgba(247, 148, 14, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary-darkest{
    --border-opacity: 1;
    border-color: #530f12;
    border-color: rgba(83, 15, 18, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary-darker{
    --border-opacity: 1;
    border-color: #7c171b;
    border-color: rgba(124, 23, 27, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary-dark{
    --border-opacity: 1;
    border-color: #a61e24;
    border-color: rgba(166, 30, 36, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary{
    --border-opacity: 1;
    border-color: #cf262d;
    border-color: rgba(207, 38, 45, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary-light{
    --border-opacity: 1;
    border-color: #d95157;
    border-color: rgba(217, 81, 87, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary-lighter{
    --border-opacity: 1;
    border-color: #e27d81;
    border-color: rgba(226, 125, 129, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-primary-lightest{
    --border-opacity: 1;
    border-color: #eca8ab;
    border-color: rgba(236, 168, 171, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest{
    --border-opacity: 1;
    border-color: #3e4525;
    border-color: rgba(62, 69, 37, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary-darker{
    --border-opacity: 1;
    border-color: #5e6837;
    border-color: rgba(94, 104, 55, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary-dark{
    --border-opacity: 1;
    border-color: #7d8a4a;
    border-color: rgba(125, 138, 74, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary{
    --border-opacity: 1;
    border-color: #9cad5c;
    border-color: rgba(156, 173, 92, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary-light{
    --border-opacity: 1;
    border-color: #b0bd7d;
    border-color: rgba(176, 189, 125, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter{
    --border-opacity: 1;
    border-color: #c4ce9d;
    border-color: rgba(196, 206, 157, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest{
    --border-opacity: 1;
    border-color: #d7debe;
    border-color: rgba(215, 222, 190, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest{
    --border-opacity: 1;
    border-color: #0f2f21;
    border-color: rgba(15, 47, 33, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker{
    --border-opacity: 1;
    border-color: #1a4731;
    border-color: rgba(26, 71, 49, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark{
    --border-opacity: 1;
    border-color: #1f9d55;
    border-color: rgba(31, 157, 85, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary{
    --border-opacity: 1;
    border-color: #FFC500;
    border-color: rgba(255, 197, 0, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary-light{
    --border-opacity: 1;
    border-color: #51d88a;
    border-color: rgba(81, 216, 138, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter{
    --border-opacity: 1;
    border-color: #a2f5bf;
    border-color: rgba(162, 245, 191, var(--border-opacity));
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest{
    --border-opacity: 1;
    border-color: #e3fcec;
    border-color: rgba(227, 252, 236, var(--border-opacity));
  }

  .hd\:border-opacity-0{
    --border-opacity: 0;
  }

  .hd\:border-opacity-25{
    --border-opacity: 0.25;
  }

  .hd\:border-opacity-50{
    --border-opacity: 0.5;
  }

  .hd\:border-opacity-75{
    --border-opacity: 0.75;
  }

  .hd\:border-opacity-100{
    --border-opacity: 1;
  }

  .hd\:hover\:border-opacity-0:hover{
    --border-opacity: 0;
  }

  .hd\:hover\:border-opacity-25:hover{
    --border-opacity: 0.25;
  }

  .hd\:hover\:border-opacity-50:hover{
    --border-opacity: 0.5;
  }

  .hd\:hover\:border-opacity-75:hover{
    --border-opacity: 0.75;
  }

  .hd\:hover\:border-opacity-100:hover{
    --border-opacity: 1;
  }

  .hd\:focus\:border-opacity-0:focus{
    --border-opacity: 0;
  }

  .hd\:focus\:border-opacity-25:focus{
    --border-opacity: 0.25;
  }

  .hd\:focus\:border-opacity-50:focus{
    --border-opacity: 0.5;
  }

  .hd\:focus\:border-opacity-75:focus{
    --border-opacity: 0.75;
  }

  .hd\:focus\:border-opacity-100:focus{
    --border-opacity: 1;
  }

  .hd\:rounded-none{
    border-radius: 0;
  }

  .hd\:rounded-xs{
    border-radius: 0.061rem;
  }

  .hd\:rounded-sm{
    border-radius: 0.125rem;
  }

  .hd\:rounded{
    border-radius: 0.25rem;
  }

  .hd\:rounded-lg{
    border-radius: 0.5rem;
  }

  .hd\:rounded-full{
    border-radius: 9999px;
  }

  .hd\:rounded-t-none{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .hd\:rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hd\:rounded-b-none{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hd\:rounded-l-none{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hd\:rounded-t-xs{
    border-top-left-radius: 0.061rem;
    border-top-right-radius: 0.061rem;
  }

  .hd\:rounded-r-xs{
    border-top-right-radius: 0.061rem;
    border-bottom-right-radius: 0.061rem;
  }

  .hd\:rounded-b-xs{
    border-bottom-right-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .hd\:rounded-l-xs{
    border-top-left-radius: 0.061rem;
    border-bottom-left-radius: 0.061rem;
  }

  .hd\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .hd\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .hd\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .hd\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .hd\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .hd\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .hd\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .hd\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .hd\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .hd\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .hd\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .hd\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .hd\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .hd\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .hd\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .hd\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .hd\:rounded-tl-none{
    border-top-left-radius: 0;
  }

  .hd\:rounded-tr-none{
    border-top-right-radius: 0;
  }

  .hd\:rounded-br-none{
    border-bottom-right-radius: 0;
  }

  .hd\:rounded-bl-none{
    border-bottom-left-radius: 0;
  }

  .hd\:rounded-tl-xs{
    border-top-left-radius: 0.061rem;
  }

  .hd\:rounded-tr-xs{
    border-top-right-radius: 0.061rem;
  }

  .hd\:rounded-br-xs{
    border-bottom-right-radius: 0.061rem;
  }

  .hd\:rounded-bl-xs{
    border-bottom-left-radius: 0.061rem;
  }

  .hd\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .hd\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .hd\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .hd\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .hd\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .hd\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .hd\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .hd\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .hd\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .hd\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .hd\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .hd\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .hd\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .hd\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .hd\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .hd\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .hd\:border-solid{
    border-style: solid;
  }

  .hd\:border-dashed{
    border-style: dashed;
  }

  .hd\:border-dotted{
    border-style: dotted;
  }

  .hd\:border-double{
    border-style: double;
  }

  .hd\:border-none{
    border-style: none;
  }

  .hd\:border-0{
    border-width: 0;
  }

  .hd\:border-2{
    border-width: 2px;
  }

  .hd\:border-4{
    border-width: 4px;
  }

  .hd\:border-8{
    border-width: 8px;
  }

  .hd\:border{
    border-width: 1px;
  }

  .hd\:border-t-0{
    border-top-width: 0;
  }

  .hd\:border-r-0{
    border-right-width: 0;
  }

  .hd\:border-b-0{
    border-bottom-width: 0;
  }

  .hd\:border-l-0{
    border-left-width: 0;
  }

  .hd\:border-t-2{
    border-top-width: 2px;
  }

  .hd\:border-r-2{
    border-right-width: 2px;
  }

  .hd\:border-b-2{
    border-bottom-width: 2px;
  }

  .hd\:border-l-2{
    border-left-width: 2px;
  }

  .hd\:border-t-4{
    border-top-width: 4px;
  }

  .hd\:border-r-4{
    border-right-width: 4px;
  }

  .hd\:border-b-4{
    border-bottom-width: 4px;
  }

  .hd\:border-l-4{
    border-left-width: 4px;
  }

  .hd\:border-t-8{
    border-top-width: 8px;
  }

  .hd\:border-r-8{
    border-right-width: 8px;
  }

  .hd\:border-b-8{
    border-bottom-width: 8px;
  }

  .hd\:border-l-8{
    border-left-width: 8px;
  }

  .hd\:border-t{
    border-top-width: 1px;
  }

  .hd\:border-r{
    border-right-width: 1px;
  }

  .hd\:border-b{
    border-bottom-width: 1px;
  }

  .hd\:border-l{
    border-left-width: 1px;
  }

  .hd\:box-border{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .hd\:box-content{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .hd\:cursor-auto{
    cursor: auto;
  }

  .hd\:cursor-default{
    cursor: default;
  }

  .hd\:cursor-pointer{
    cursor: pointer;
  }

  .hd\:cursor-wait{
    cursor: wait;
  }

  .hd\:cursor-text{
    cursor: text;
  }

  .hd\:cursor-move{
    cursor: move;
  }

  .hd\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .hd\:block{
    display: block;
  }

  .hd\:inline-block{
    display: inline-block;
  }

  .hd\:inline{
    display: inline;
  }

  .hd\:flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .hd\:inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .hd\:table{
    display: table;
  }

  .hd\:table-caption{
    display: table-caption;
  }

  .hd\:table-cell{
    display: table-cell;
  }

  .hd\:table-column{
    display: table-column;
  }

  .hd\:table-column-group{
    display: table-column-group;
  }

  .hd\:table-footer-group{
    display: table-footer-group;
  }

  .hd\:table-header-group{
    display: table-header-group;
  }

  .hd\:table-row-group{
    display: table-row-group;
  }

  .hd\:table-row{
    display: table-row;
  }

  .hd\:flow-root{
    display: flow-root;
  }

  .hd\:grid{
    display: grid;
  }

  .hd\:inline-grid{
    display: inline-grid;
  }

  .hd\:contents{
    display: contents;
  }

  .hd\:hidden{
    display: none;
  }

  .hd\:flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .hd\:flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .hd\:flex-col{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .hd\:flex-col-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .hd\:flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .hd\:flex-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }

  .hd\:flex-no-wrap{
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .hd\:place-items-auto{
    place-items: auto;
  }

  .hd\:place-items-start{
    place-items: start;
  }

  .hd\:place-items-end{
    place-items: end;
  }

  .hd\:place-items-center{
    place-items: center;
  }

  .hd\:place-items-stretch{
    place-items: stretch;
  }

  .hd\:place-content-center{
    place-content: center;
  }

  .hd\:place-content-start{
    place-content: start;
  }

  .hd\:place-content-end{
    place-content: end;
  }

  .hd\:place-content-between{
    place-content: space-between;
  }

  .hd\:place-content-around{
    place-content: space-around;
  }

  .hd\:place-content-evenly{
    place-content: space-evenly;
  }

  .hd\:place-content-stretch{
    place-content: stretch;
  }

  .hd\:place-self-auto{
    place-self: auto;
  }

  .hd\:place-self-start{
    place-self: start;
  }

  .hd\:place-self-end{
    place-self: end;
  }

  .hd\:place-self-center{
    place-self: center;
  }

  .hd\:place-self-stretch{
    place-self: stretch;
  }

  .hd\:items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .hd\:items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .hd\:items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hd\:items-baseline{
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .hd\:items-stretch{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .hd\:content-center{
    -ms-flex-line-pack: center;
        align-content: center;
  }

  .hd\:content-start{
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }

  .hd\:content-end{
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }

  .hd\:content-between{
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }

  .hd\:content-around{
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }

  .hd\:content-evenly{
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }

  .hd\:self-auto{
    -ms-flex-item-align: auto;
        align-self: auto;
  }

  .hd\:self-start{
    -ms-flex-item-align: start;
        align-self: flex-start;
  }

  .hd\:self-end{
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  .hd\:self-center{
    -ms-flex-item-align: center;
        align-self: center;
  }

  .hd\:self-stretch{
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

  .hd\:justify-items-auto{
    justify-items: auto;
  }

  .hd\:justify-items-start{
    justify-items: start;
  }

  .hd\:justify-items-end{
    justify-items: end;
  }

  .hd\:justify-items-center{
    justify-items: center;
  }

  .hd\:justify-items-stretch{
    justify-items: stretch;
  }

  .hd\:justify-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .hd\:justify-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .hd\:justify-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .hd\:justify-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .hd\:justify-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .hd\:justify-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .hd\:justify-self-auto{
    justify-self: auto;
  }

  .hd\:justify-self-start{
    justify-self: start;
  }

  .hd\:justify-self-end{
    justify-self: end;
  }

  .hd\:justify-self-center{
    justify-self: center;
  }

  .hd\:justify-self-stretch{
    justify-self: stretch;
  }

  .hd\:flex-1{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }

  .hd\:flex-auto{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .hd\:flex-initial{
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .hd\:flex-none{
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .hd\:flex-grow-0{
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .hd\:flex-grow{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .hd\:flex-shrink-0{
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .hd\:flex-shrink{
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .hd\:order-1{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .hd\:order-2{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .hd\:order-3{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .hd\:order-4{
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .hd\:order-5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .hd\:order-6{
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .hd\:order-7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .hd\:order-8{
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .hd\:order-9{
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .hd\:order-10{
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .hd\:order-11{
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .hd\:order-12{
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .hd\:order-first{
    -webkit-box-ordinal-group: -9998;
        -ms-flex-order: -9999;
            order: -9999;
  }

  .hd\:order-last{
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }

  .hd\:order-none{
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .hd\:float-right{
    float: right;
  }

  .hd\:float-left{
    float: left;
  }

  .hd\:float-none{
    float: none;
  }

  .hd\:clearfix:after{
    content: "";
    display: table;
    clear: both;
  }

  .hd\:clear-left{
    clear: left;
  }

  .hd\:clear-right{
    clear: right;
  }

  .hd\:clear-both{
    clear: both;
  }

  .hd\:clear-none{
    clear: none;
  }

  .hd\:font-primary{
    font-family: poppins, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Segoe UI, sans-serif, system-ui, BlinkMacSystemFont, -apple-system;
  }

  .hd\:font-secondary{
    font-family: poppins, Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif;
  }

  .hd\:font-mono{
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  }

  .hd\:font-hairline{
    font-weight: 100;
  }

  .hd\:font-thin{
    font-weight: 200;
  }

  .hd\:font-light{
    font-weight: 300;
  }

  .hd\:font-normal{
    font-weight: 400;
  }

  .hd\:font-medium{
    font-weight: 500;
  }

  .hd\:font-semibold{
    font-weight: 600;
  }

  .hd\:font-bold{
    font-weight: 700;
  }

  .hd\:font-extrabold{
    font-weight: 800;
  }

  .hd\:font-black{
    font-weight: 900;
  }

  .hd\:hover\:font-hairline:hover{
    font-weight: 100;
  }

  .hd\:hover\:font-thin:hover{
    font-weight: 200;
  }

  .hd\:hover\:font-light:hover{
    font-weight: 300;
  }

  .hd\:hover\:font-normal:hover{
    font-weight: 400;
  }

  .hd\:hover\:font-medium:hover{
    font-weight: 500;
  }

  .hd\:hover\:font-semibold:hover{
    font-weight: 600;
  }

  .hd\:hover\:font-bold:hover{
    font-weight: 700;
  }

  .hd\:hover\:font-extrabold:hover{
    font-weight: 800;
  }

  .hd\:hover\:font-black:hover{
    font-weight: 900;
  }

  .hd\:focus\:font-hairline:focus{
    font-weight: 100;
  }

  .hd\:focus\:font-thin:focus{
    font-weight: 200;
  }

  .hd\:focus\:font-light:focus{
    font-weight: 300;
  }

  .hd\:focus\:font-normal:focus{
    font-weight: 400;
  }

  .hd\:focus\:font-medium:focus{
    font-weight: 500;
  }

  .hd\:focus\:font-semibold:focus{
    font-weight: 600;
  }

  .hd\:focus\:font-bold:focus{
    font-weight: 700;
  }

  .hd\:focus\:font-extrabold:focus{
    font-weight: 800;
  }

  .hd\:focus\:font-black:focus{
    font-weight: 900;
  }

  .hd\:h-0{
    height: 0;
  }

  .hd\:h-1{
    height: 0.25rem;
  }

  .hd\:h-2{
    height: 0.5rem;
  }

  .hd\:h-3{
    height: 0.75rem;
  }

  .hd\:h-4{
    height: 1rem;
  }

  .hd\:h-5{
    height: 1.25rem;
  }

  .hd\:h-6{
    height: 1.5rem;
  }

  .hd\:h-8{
    height: 2rem;
  }

  .hd\:h-10{
    height: 2.5rem;
  }

  .hd\:h-12{
    height: 3rem;
  }

  .hd\:h-14{
    height: 3.5rem;
  }

  .hd\:h-16{
    height: 4rem;
  }

  .hd\:h-20{
    height: 5rem;
  }

  .hd\:h-21{
    height: 5.25rem;
  }

  .hd\:h-24{
    height: 6rem;
  }

  .hd\:h-32{
    height: 8rem;
  }

  .hd\:h-36{
    height: 9rem;
  }

  .hd\:h-40{
    height: 10rem;
  }

  .hd\:h-44{
    height: 11rem;
  }

  .hd\:h-48{
    height: 12rem;
  }

  .hd\:h-56{
    height: 14rem;
  }

  .hd\:h-64{
    height: 16rem;
  }

  .hd\:h-544{
    height: 34rem;
  }

  .hd\:h-auto{
    height: auto;
  }

  .hd\:h-px{
    height: 1px;
  }

  .hd\:h-full{
    height: 100%;
  }

  .hd\:h-screen{
    height: 100vh;
  }

  .hd\:text-0{
    font-size: 0;
  }

  .hd\:text-xxs{
    font-size: .75rem;
  }

  .hd\:text-xs{
    font-size: .8125rem;
  }

  .hd\:text-sm{
    font-size: .875rem;
  }

  .hd\:text-base{
    font-size: .9375rem;
  }

  .hd\:text-lg{
    font-size: 1rem;
  }

  .hd\:text-2lg{
    font-size: 1.125rem;
  }

  .hd\:text-xl{
    font-size: 1.25rem;
  }

  .hd\:text-2xl{
    font-size: 1.5rem;
  }

  .hd\:text-3xl{
    font-size: 2rem;
  }

  .hd\:text-4xl{
    font-size: 2.25rem;
  }

  .hd\:text-5xl{
    font-size: 3rem;
  }

  .hd\:leading-none{
    line-height: 1;
  }

  .hd\:leading-tight{
    line-height: 1.25;
  }

  .hd\:leading-snug{
    line-height: 1.375;
  }

  .hd\:leading-normal{
    line-height: 1.5;
  }

  .hd\:leading-relaxed{
    line-height: 1.625;
  }

  .hd\:leading-loose{
    line-height: 2;
  }

  .hd\:list-inside{
    list-style-position: inside;
  }

  .hd\:list-outside{
    list-style-position: outside;
  }

  .hd\:list-none{
    list-style-type: none;
  }

  .hd\:list-disc{
    list-style-type: disc;
  }

  .hd\:list-decimal{
    list-style-type: decimal;
  }

  .hd\:m-0{
    margin: 0;
  }

  .hd\:m-1{
    margin: 0.25rem;
  }

  .hd\:m-2{
    margin: 0.5rem;
  }

  .hd\:m-3{
    margin: 0.75rem;
  }

  .hd\:m-4{
    margin: 1rem;
  }

  .hd\:m-5{
    margin: 1.25rem;
  }

  .hd\:m-6{
    margin: 1.5rem;
  }

  .hd\:m-8{
    margin: 2rem;
  }

  .hd\:m-10{
    margin: 2.5rem;
  }

  .hd\:m-12{
    margin: 3rem;
  }

  .hd\:m-14{
    margin: 3.5rem;
  }

  .hd\:m-16{
    margin: 4rem;
  }

  .hd\:m-20{
    margin: 5rem;
  }

  .hd\:m-24{
    margin: 6rem;
  }

  .hd\:m-32{
    margin: 8rem;
  }

  .hd\:m-36{
    margin: 9rem;
  }

  .hd\:m-40{
    margin: 10rem;
  }

  .hd\:m-44{
    margin: 11rem;
  }

  .hd\:m-48{
    margin: 12rem;
  }

  .hd\:m-56{
    margin: 14rem;
  }

  .hd\:m-64{
    margin: 16rem;
  }

  .hd\:m-auto{
    margin: auto;
  }

  .hd\:m-px{
    margin: 1px;
  }

  .hd\:-m-1{
    margin: -0.25rem;
  }

  .hd\:-m-2{
    margin: -0.5rem;
  }

  .hd\:-m-3{
    margin: -0.75rem;
  }

  .hd\:-m-4{
    margin: -1rem;
  }

  .hd\:-m-5{
    margin: -1.25rem;
  }

  .hd\:-m-6{
    margin: -1.5rem;
  }

  .hd\:-m-8{
    margin: -2rem;
  }

  .hd\:-m-10{
    margin: -2.5rem;
  }

  .hd\:-m-12{
    margin: -3rem;
  }

  .hd\:-m-14{
    margin: -3.5rem;
  }

  .hd\:-m-16{
    margin: -4rem;
  }

  .hd\:-m-20{
    margin: -5rem;
  }

  .hd\:-m-24{
    margin: -6rem;
  }

  .hd\:-m-32{
    margin: -8rem;
  }

  .hd\:-m-36{
    margin: -9rem;
  }

  .hd\:-m-40{
    margin: -10rem;
  }

  .hd\:-m-44{
    margin: -11rem;
  }

  .hd\:-m-48{
    margin: -12rem;
  }

  .hd\:-m-56{
    margin: -14rem;
  }

  .hd\:-m-64{
    margin: -16rem;
  }

  .hd\:-m-px{
    margin: -1px;
  }

  .hd\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }

  .hd\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }

  .hd\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .hd\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .hd\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .hd\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .hd\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hd\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .hd\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hd\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hd\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .hd\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .hd\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hd\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .hd\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .hd\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .hd\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .hd\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .hd\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .hd\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .hd\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .hd\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .hd\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .hd\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .hd\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .hd\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .hd\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .hd\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .hd\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .hd\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .hd\:my-36{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .hd\:mx-36{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .hd\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .hd\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .hd\:my-44{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .hd\:mx-44{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .hd\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .hd\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .hd\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .hd\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .hd\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .hd\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .hd\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .hd\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .hd\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .hd\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .hd\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .hd\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .hd\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .hd\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .hd\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .hd\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .hd\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .hd\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .hd\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .hd\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .hd\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .hd\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .hd\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .hd\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .hd\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .hd\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .hd\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .hd\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .hd\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .hd\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .hd\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .hd\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .hd\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .hd\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .hd\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .hd\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .hd\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .hd\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .hd\:-my-36{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .hd\:-mx-36{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .hd\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .hd\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .hd\:-my-44{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .hd\:-mx-44{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .hd\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .hd\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .hd\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .hd\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .hd\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .hd\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .hd\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .hd\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .hd\:mt-0{
    margin-top: 0;
  }

  .hd\:mr-0{
    margin-right: 0;
  }

  .hd\:mb-0{
    margin-bottom: 0;
  }

  .hd\:ml-0{
    margin-left: 0;
  }

  .hd\:mt-1{
    margin-top: 0.25rem;
  }

  .hd\:mr-1{
    margin-right: 0.25rem;
  }

  .hd\:mb-1{
    margin-bottom: 0.25rem;
  }

  .hd\:ml-1{
    margin-left: 0.25rem;
  }

  .hd\:mt-2{
    margin-top: 0.5rem;
  }

  .hd\:mr-2{
    margin-right: 0.5rem;
  }

  .hd\:mb-2{
    margin-bottom: 0.5rem;
  }

  .hd\:ml-2{
    margin-left: 0.5rem;
  }

  .hd\:mt-3{
    margin-top: 0.75rem;
  }

  .hd\:mr-3{
    margin-right: 0.75rem;
  }

  .hd\:mb-3{
    margin-bottom: 0.75rem;
  }

  .hd\:ml-3{
    margin-left: 0.75rem;
  }

  .hd\:mt-4{
    margin-top: 1rem;
  }

  .hd\:mr-4{
    margin-right: 1rem;
  }

  .hd\:mb-4{
    margin-bottom: 1rem;
  }

  .hd\:ml-4{
    margin-left: 1rem;
  }

  .hd\:mt-5{
    margin-top: 1.25rem;
  }

  .hd\:mr-5{
    margin-right: 1.25rem;
  }

  .hd\:mb-5{
    margin-bottom: 1.25rem;
  }

  .hd\:ml-5{
    margin-left: 1.25rem;
  }

  .hd\:mt-6{
    margin-top: 1.5rem;
  }

  .hd\:mr-6{
    margin-right: 1.5rem;
  }

  .hd\:mb-6{
    margin-bottom: 1.5rem;
  }

  .hd\:ml-6{
    margin-left: 1.5rem;
  }

  .hd\:mt-8{
    margin-top: 2rem;
  }

  .hd\:mr-8{
    margin-right: 2rem;
  }

  .hd\:mb-8{
    margin-bottom: 2rem;
  }

  .hd\:ml-8{
    margin-left: 2rem;
  }

  .hd\:mt-10{
    margin-top: 2.5rem;
  }

  .hd\:mr-10{
    margin-right: 2.5rem;
  }

  .hd\:mb-10{
    margin-bottom: 2.5rem;
  }

  .hd\:ml-10{
    margin-left: 2.5rem;
  }

  .hd\:mt-12{
    margin-top: 3rem;
  }

  .hd\:mr-12{
    margin-right: 3rem;
  }

  .hd\:mb-12{
    margin-bottom: 3rem;
  }

  .hd\:ml-12{
    margin-left: 3rem;
  }

  .hd\:mt-14{
    margin-top: 3.5rem;
  }

  .hd\:mr-14{
    margin-right: 3.5rem;
  }

  .hd\:mb-14{
    margin-bottom: 3.5rem;
  }

  .hd\:ml-14{
    margin-left: 3.5rem;
  }

  .hd\:mt-16{
    margin-top: 4rem;
  }

  .hd\:mr-16{
    margin-right: 4rem;
  }

  .hd\:mb-16{
    margin-bottom: 4rem;
  }

  .hd\:ml-16{
    margin-left: 4rem;
  }

  .hd\:mt-20{
    margin-top: 5rem;
  }

  .hd\:mr-20{
    margin-right: 5rem;
  }

  .hd\:mb-20{
    margin-bottom: 5rem;
  }

  .hd\:ml-20{
    margin-left: 5rem;
  }

  .hd\:mt-24{
    margin-top: 6rem;
  }

  .hd\:mr-24{
    margin-right: 6rem;
  }

  .hd\:mb-24{
    margin-bottom: 6rem;
  }

  .hd\:ml-24{
    margin-left: 6rem;
  }

  .hd\:mt-32{
    margin-top: 8rem;
  }

  .hd\:mr-32{
    margin-right: 8rem;
  }

  .hd\:mb-32{
    margin-bottom: 8rem;
  }

  .hd\:ml-32{
    margin-left: 8rem;
  }

  .hd\:mt-36{
    margin-top: 9rem;
  }

  .hd\:mr-36{
    margin-right: 9rem;
  }

  .hd\:mb-36{
    margin-bottom: 9rem;
  }

  .hd\:ml-36{
    margin-left: 9rem;
  }

  .hd\:mt-40{
    margin-top: 10rem;
  }

  .hd\:mr-40{
    margin-right: 10rem;
  }

  .hd\:mb-40{
    margin-bottom: 10rem;
  }

  .hd\:ml-40{
    margin-left: 10rem;
  }

  .hd\:mt-44{
    margin-top: 11rem;
  }

  .hd\:mr-44{
    margin-right: 11rem;
  }

  .hd\:mb-44{
    margin-bottom: 11rem;
  }

  .hd\:ml-44{
    margin-left: 11rem;
  }

  .hd\:mt-48{
    margin-top: 12rem;
  }

  .hd\:mr-48{
    margin-right: 12rem;
  }

  .hd\:mb-48{
    margin-bottom: 12rem;
  }

  .hd\:ml-48{
    margin-left: 12rem;
  }

  .hd\:mt-56{
    margin-top: 14rem;
  }

  .hd\:mr-56{
    margin-right: 14rem;
  }

  .hd\:mb-56{
    margin-bottom: 14rem;
  }

  .hd\:ml-56{
    margin-left: 14rem;
  }

  .hd\:mt-64{
    margin-top: 16rem;
  }

  .hd\:mr-64{
    margin-right: 16rem;
  }

  .hd\:mb-64{
    margin-bottom: 16rem;
  }

  .hd\:ml-64{
    margin-left: 16rem;
  }

  .hd\:mt-auto{
    margin-top: auto;
  }

  .hd\:mr-auto{
    margin-right: auto;
  }

  .hd\:mb-auto{
    margin-bottom: auto;
  }

  .hd\:ml-auto{
    margin-left: auto;
  }

  .hd\:mt-px{
    margin-top: 1px;
  }

  .hd\:mr-px{
    margin-right: 1px;
  }

  .hd\:mb-px{
    margin-bottom: 1px;
  }

  .hd\:ml-px{
    margin-left: 1px;
  }

  .hd\:-mt-1{
    margin-top: -0.25rem;
  }

  .hd\:-mr-1{
    margin-right: -0.25rem;
  }

  .hd\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .hd\:-ml-1{
    margin-left: -0.25rem;
  }

  .hd\:-mt-2{
    margin-top: -0.5rem;
  }

  .hd\:-mr-2{
    margin-right: -0.5rem;
  }

  .hd\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .hd\:-ml-2{
    margin-left: -0.5rem;
  }

  .hd\:-mt-3{
    margin-top: -0.75rem;
  }

  .hd\:-mr-3{
    margin-right: -0.75rem;
  }

  .hd\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .hd\:-ml-3{
    margin-left: -0.75rem;
  }

  .hd\:-mt-4{
    margin-top: -1rem;
  }

  .hd\:-mr-4{
    margin-right: -1rem;
  }

  .hd\:-mb-4{
    margin-bottom: -1rem;
  }

  .hd\:-ml-4{
    margin-left: -1rem;
  }

  .hd\:-mt-5{
    margin-top: -1.25rem;
  }

  .hd\:-mr-5{
    margin-right: -1.25rem;
  }

  .hd\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .hd\:-ml-5{
    margin-left: -1.25rem;
  }

  .hd\:-mt-6{
    margin-top: -1.5rem;
  }

  .hd\:-mr-6{
    margin-right: -1.5rem;
  }

  .hd\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .hd\:-ml-6{
    margin-left: -1.5rem;
  }

  .hd\:-mt-8{
    margin-top: -2rem;
  }

  .hd\:-mr-8{
    margin-right: -2rem;
  }

  .hd\:-mb-8{
    margin-bottom: -2rem;
  }

  .hd\:-ml-8{
    margin-left: -2rem;
  }

  .hd\:-mt-10{
    margin-top: -2.5rem;
  }

  .hd\:-mr-10{
    margin-right: -2.5rem;
  }

  .hd\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .hd\:-ml-10{
    margin-left: -2.5rem;
  }

  .hd\:-mt-12{
    margin-top: -3rem;
  }

  .hd\:-mr-12{
    margin-right: -3rem;
  }

  .hd\:-mb-12{
    margin-bottom: -3rem;
  }

  .hd\:-ml-12{
    margin-left: -3rem;
  }

  .hd\:-mt-14{
    margin-top: -3.5rem;
  }

  .hd\:-mr-14{
    margin-right: -3.5rem;
  }

  .hd\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .hd\:-ml-14{
    margin-left: -3.5rem;
  }

  .hd\:-mt-16{
    margin-top: -4rem;
  }

  .hd\:-mr-16{
    margin-right: -4rem;
  }

  .hd\:-mb-16{
    margin-bottom: -4rem;
  }

  .hd\:-ml-16{
    margin-left: -4rem;
  }

  .hd\:-mt-20{
    margin-top: -5rem;
  }

  .hd\:-mr-20{
    margin-right: -5rem;
  }

  .hd\:-mb-20{
    margin-bottom: -5rem;
  }

  .hd\:-ml-20{
    margin-left: -5rem;
  }

  .hd\:-mt-24{
    margin-top: -6rem;
  }

  .hd\:-mr-24{
    margin-right: -6rem;
  }

  .hd\:-mb-24{
    margin-bottom: -6rem;
  }

  .hd\:-ml-24{
    margin-left: -6rem;
  }

  .hd\:-mt-32{
    margin-top: -8rem;
  }

  .hd\:-mr-32{
    margin-right: -8rem;
  }

  .hd\:-mb-32{
    margin-bottom: -8rem;
  }

  .hd\:-ml-32{
    margin-left: -8rem;
  }

  .hd\:-mt-36{
    margin-top: -9rem;
  }

  .hd\:-mr-36{
    margin-right: -9rem;
  }

  .hd\:-mb-36{
    margin-bottom: -9rem;
  }

  .hd\:-ml-36{
    margin-left: -9rem;
  }

  .hd\:-mt-40{
    margin-top: -10rem;
  }

  .hd\:-mr-40{
    margin-right: -10rem;
  }

  .hd\:-mb-40{
    margin-bottom: -10rem;
  }

  .hd\:-ml-40{
    margin-left: -10rem;
  }

  .hd\:-mt-44{
    margin-top: -11rem;
  }

  .hd\:-mr-44{
    margin-right: -11rem;
  }

  .hd\:-mb-44{
    margin-bottom: -11rem;
  }

  .hd\:-ml-44{
    margin-left: -11rem;
  }

  .hd\:-mt-48{
    margin-top: -12rem;
  }

  .hd\:-mr-48{
    margin-right: -12rem;
  }

  .hd\:-mb-48{
    margin-bottom: -12rem;
  }

  .hd\:-ml-48{
    margin-left: -12rem;
  }

  .hd\:-mt-56{
    margin-top: -14rem;
  }

  .hd\:-mr-56{
    margin-right: -14rem;
  }

  .hd\:-mb-56{
    margin-bottom: -14rem;
  }

  .hd\:-ml-56{
    margin-left: -14rem;
  }

  .hd\:-mt-64{
    margin-top: -16rem;
  }

  .hd\:-mr-64{
    margin-right: -16rem;
  }

  .hd\:-mb-64{
    margin-bottom: -16rem;
  }

  .hd\:-ml-64{
    margin-left: -16rem;
  }

  .hd\:-mt-px{
    margin-top: -1px;
  }

  .hd\:-mr-px{
    margin-right: -1px;
  }

  .hd\:-mb-px{
    margin-bottom: -1px;
  }

  .hd\:-ml-px{
    margin-left: -1px;
  }

  .hd\:max-h-full{
    max-height: 100%;
  }

  .hd\:max-h-screen{
    max-height: 100vh;
  }

  .hd\:max-w-none{
    max-width: none;
  }

  .hd\:max-w-xs{
    max-width: 20rem;
  }

  .hd\:max-w-sm{
    max-width: 24rem;
  }

  .hd\:max-w-md{
    max-width: 28rem;
  }

  .hd\:max-w-lg{
    max-width: 32rem;
  }

  .hd\:max-w-xl{
    max-width: 36rem;
  }

  .hd\:max-w-2xl{
    max-width: 42rem;
  }

  .hd\:max-w-3xl{
    max-width: 48rem;
  }

  .hd\:max-w-4xl{
    max-width: 56rem;
  }

  .hd\:max-w-5xl{
    max-width: 64rem;
  }

  .hd\:max-w-6xl{
    max-width: 72rem;
  }

  .hd\:max-w-full{
    max-width: 100%;
  }

  .hd\:max-w-screen-xs{
    max-width: 420px;
  }

  .hd\:max-w-screen-sm{
    max-width: 576px;
  }

  .hd\:max-w-screen-md{
    max-width: 768px;
  }

  .hd\:max-w-screen-lg{
    max-width: 992px;
  }

  .hd\:max-w-screen-xl{
    max-width: 1200px;
  }

  .hd\:max-w-screen-xxl{
    max-width: 1472px;
  }

  .hd\:max-w-screen-hd{
    max-width: 1920px;
  }

  .hd\:min-h-0{
    min-height: 0;
  }

  .hd\:min-h-full{
    min-height: 100%;
  }

  .hd\:min-h-screen{
    min-height: 100vh;
  }

  .hd\:min-w-0{
    min-width: 0;
  }

  .hd\:min-w-1{
    min-width: 0.25rem;
  }

  .hd\:min-w-2{
    min-width: 0.5rem;
  }

  .hd\:min-w-3{
    min-width: 0.75rem;
  }

  .hd\:min-w-4{
    min-width: 1rem;
  }

  .hd\:min-w-5{
    min-width: 1.25rem;
  }

  .hd\:min-w-6{
    min-width: 1.5rem;
  }

  .hd\:min-w-8{
    min-width: 2rem;
  }

  .hd\:min-w-10{
    min-width: 2.5rem;
  }

  .hd\:min-w-12{
    min-width: 3rem;
  }

  .hd\:min-w-14{
    min-width: 3.5rem;
  }

  .hd\:min-w-16{
    min-width: 4rem;
  }

  .hd\:min-w-20{
    min-width: 5rem;
  }

  .hd\:min-w-24{
    min-width: 6rem;
  }

  .hd\:min-w-32{
    min-width: 8rem;
  }

  .hd\:min-w-36{
    min-width: 9rem;
  }

  .hd\:min-w-40{
    min-width: 10rem;
  }

  .hd\:min-w-44{
    min-width: 11rem;
  }

  .hd\:min-w-48{
    min-width: 12rem;
  }

  .hd\:min-w-56{
    min-width: 14rem;
  }

  .hd\:min-w-64{
    min-width: 16rem;
  }

  .hd\:min-w-px{
    min-width: 1px;
  }

  .hd\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .hd\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hd\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .hd\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .hd\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .hd\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .hd\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .hd\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .hd\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .hd\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .hd\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .hd\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .hd\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .hd\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .hd\:opacity-0{
    opacity: 0;
  }

  .hd\:opacity-25{
    opacity: 0.25;
  }

  .hd\:opacity-50{
    opacity: 0.5;
  }

  .hd\:opacity-75{
    opacity: 0.75;
  }

  .hd\:opacity-100{
    opacity: 1;
  }

  .hd\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .hd\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .hd\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .hd\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .hd\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .hd\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .hd\:overflow-auto{
    overflow: auto;
  }

  .hd\:overflow-hidden{
    overflow: hidden;
  }

  .hd\:overflow-visible{
    overflow: visible;
  }

  .hd\:overflow-scroll{
    overflow: scroll;
  }

  .hd\:overflow-x-auto{
    overflow-x: auto;
  }

  .hd\:overflow-y-auto{
    overflow-y: auto;
  }

  .hd\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .hd\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .hd\:overflow-x-visible{
    overflow-x: visible;
  }

  .hd\:overflow-y-visible{
    overflow-y: visible;
  }

  .hd\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .hd\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .hd\:scrolling-touch{
    -webkit-overflow-scrolling: touch;
  }

  .hd\:scrolling-auto{
    -webkit-overflow-scrolling: auto;
  }

  .hd\:overscroll-auto{
    overscroll-behavior: auto;
  }

  .hd\:overscroll-contain{
    overscroll-behavior: contain;
  }

  .hd\:overscroll-none{
    overscroll-behavior: none;
  }

  .hd\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .hd\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .hd\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .hd\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .hd\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .hd\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .hd\:p-0{
    padding: 0;
  }

  .hd\:p-1{
    padding: 0.25rem;
  }

  .hd\:p-2{
    padding: 0.5rem;
  }

  .hd\:p-3{
    padding: 0.75rem;
  }

  .hd\:p-4{
    padding: 1rem;
  }

  .hd\:p-5{
    padding: 1.25rem;
  }

  .hd\:p-6{
    padding: 1.5rem;
  }

  .hd\:p-8{
    padding: 2rem;
  }

  .hd\:p-10{
    padding: 2.5rem;
  }

  .hd\:p-12{
    padding: 3rem;
  }

  .hd\:p-14{
    padding: 3.5rem;
  }

  .hd\:p-16{
    padding: 4rem;
  }

  .hd\:p-20{
    padding: 5rem;
  }

  .hd\:p-21{
    padding: 5.25rem;
  }

  .hd\:p-24{
    padding: 6rem;
  }

  .hd\:p-32{
    padding: 8rem;
  }

  .hd\:p-36{
    padding: 9rem;
  }

  .hd\:p-40{
    padding: 10rem;
  }

  .hd\:p-44{
    padding: 11rem;
  }

  .hd\:p-48{
    padding: 12rem;
  }

  .hd\:p-56{
    padding: 14rem;
  }

  .hd\:p-64{
    padding: 16rem;
  }

  .hd\:p-px{
    padding: 1px;
  }

  .hd\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }

  .hd\:px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .hd\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .hd\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .hd\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hd\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hd\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .hd\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hd\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hd\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hd\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hd\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hd\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hd\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hd\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hd\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hd\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hd\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hd\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hd\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hd\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hd\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .hd\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hd\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hd\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hd\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .hd\:py-21{
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .hd\:px-21{
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .hd\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hd\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .hd\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .hd\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .hd\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .hd\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .hd\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .hd\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .hd\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .hd\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .hd\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .hd\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .hd\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .hd\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .hd\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .hd\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .hd\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .hd\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .hd\:pt-0{
    padding-top: 0;
  }

  .hd\:pr-0{
    padding-right: 0;
  }

  .hd\:pb-0{
    padding-bottom: 0;
  }

  .hd\:pl-0{
    padding-left: 0;
  }

  .hd\:pt-1{
    padding-top: 0.25rem;
  }

  .hd\:pr-1{
    padding-right: 0.25rem;
  }

  .hd\:pb-1{
    padding-bottom: 0.25rem;
  }

  .hd\:pl-1{
    padding-left: 0.25rem;
  }

  .hd\:pt-2{
    padding-top: 0.5rem;
  }

  .hd\:pr-2{
    padding-right: 0.5rem;
  }

  .hd\:pb-2{
    padding-bottom: 0.5rem;
  }

  .hd\:pl-2{
    padding-left: 0.5rem;
  }

  .hd\:pt-3{
    padding-top: 0.75rem;
  }

  .hd\:pr-3{
    padding-right: 0.75rem;
  }

  .hd\:pb-3{
    padding-bottom: 0.75rem;
  }

  .hd\:pl-3{
    padding-left: 0.75rem;
  }

  .hd\:pt-4{
    padding-top: 1rem;
  }

  .hd\:pr-4{
    padding-right: 1rem;
  }

  .hd\:pb-4{
    padding-bottom: 1rem;
  }

  .hd\:pl-4{
    padding-left: 1rem;
  }

  .hd\:pt-5{
    padding-top: 1.25rem;
  }

  .hd\:pr-5{
    padding-right: 1.25rem;
  }

  .hd\:pb-5{
    padding-bottom: 1.25rem;
  }

  .hd\:pl-5{
    padding-left: 1.25rem;
  }

  .hd\:pt-6{
    padding-top: 1.5rem;
  }

  .hd\:pr-6{
    padding-right: 1.5rem;
  }

  .hd\:pb-6{
    padding-bottom: 1.5rem;
  }

  .hd\:pl-6{
    padding-left: 1.5rem;
  }

  .hd\:pt-8{
    padding-top: 2rem;
  }

  .hd\:pr-8{
    padding-right: 2rem;
  }

  .hd\:pb-8{
    padding-bottom: 2rem;
  }

  .hd\:pl-8{
    padding-left: 2rem;
  }

  .hd\:pt-10{
    padding-top: 2.5rem;
  }

  .hd\:pr-10{
    padding-right: 2.5rem;
  }

  .hd\:pb-10{
    padding-bottom: 2.5rem;
  }

  .hd\:pl-10{
    padding-left: 2.5rem;
  }

  .hd\:pt-12{
    padding-top: 3rem;
  }

  .hd\:pr-12{
    padding-right: 3rem;
  }

  .hd\:pb-12{
    padding-bottom: 3rem;
  }

  .hd\:pl-12{
    padding-left: 3rem;
  }

  .hd\:pt-14{
    padding-top: 3.5rem;
  }

  .hd\:pr-14{
    padding-right: 3.5rem;
  }

  .hd\:pb-14{
    padding-bottom: 3.5rem;
  }

  .hd\:pl-14{
    padding-left: 3.5rem;
  }

  .hd\:pt-16{
    padding-top: 4rem;
  }

  .hd\:pr-16{
    padding-right: 4rem;
  }

  .hd\:pb-16{
    padding-bottom: 4rem;
  }

  .hd\:pl-16{
    padding-left: 4rem;
  }

  .hd\:pt-20{
    padding-top: 5rem;
  }

  .hd\:pr-20{
    padding-right: 5rem;
  }

  .hd\:pb-20{
    padding-bottom: 5rem;
  }

  .hd\:pl-20{
    padding-left: 5rem;
  }

  .hd\:pt-21{
    padding-top: 5.25rem;
  }

  .hd\:pr-21{
    padding-right: 5.25rem;
  }

  .hd\:pb-21{
    padding-bottom: 5.25rem;
  }

  .hd\:pl-21{
    padding-left: 5.25rem;
  }

  .hd\:pt-24{
    padding-top: 6rem;
  }

  .hd\:pr-24{
    padding-right: 6rem;
  }

  .hd\:pb-24{
    padding-bottom: 6rem;
  }

  .hd\:pl-24{
    padding-left: 6rem;
  }

  .hd\:pt-32{
    padding-top: 8rem;
  }

  .hd\:pr-32{
    padding-right: 8rem;
  }

  .hd\:pb-32{
    padding-bottom: 8rem;
  }

  .hd\:pl-32{
    padding-left: 8rem;
  }

  .hd\:pt-36{
    padding-top: 9rem;
  }

  .hd\:pr-36{
    padding-right: 9rem;
  }

  .hd\:pb-36{
    padding-bottom: 9rem;
  }

  .hd\:pl-36{
    padding-left: 9rem;
  }

  .hd\:pt-40{
    padding-top: 10rem;
  }

  .hd\:pr-40{
    padding-right: 10rem;
  }

  .hd\:pb-40{
    padding-bottom: 10rem;
  }

  .hd\:pl-40{
    padding-left: 10rem;
  }

  .hd\:pt-44{
    padding-top: 11rem;
  }

  .hd\:pr-44{
    padding-right: 11rem;
  }

  .hd\:pb-44{
    padding-bottom: 11rem;
  }

  .hd\:pl-44{
    padding-left: 11rem;
  }

  .hd\:pt-48{
    padding-top: 12rem;
  }

  .hd\:pr-48{
    padding-right: 12rem;
  }

  .hd\:pb-48{
    padding-bottom: 12rem;
  }

  .hd\:pl-48{
    padding-left: 12rem;
  }

  .hd\:pt-56{
    padding-top: 14rem;
  }

  .hd\:pr-56{
    padding-right: 14rem;
  }

  .hd\:pb-56{
    padding-bottom: 14rem;
  }

  .hd\:pl-56{
    padding-left: 14rem;
  }

  .hd\:pt-64{
    padding-top: 16rem;
  }

  .hd\:pr-64{
    padding-right: 16rem;
  }

  .hd\:pb-64{
    padding-bottom: 16rem;
  }

  .hd\:pl-64{
    padding-left: 16rem;
  }

  .hd\:pt-px{
    padding-top: 1px;
  }

  .hd\:pr-px{
    padding-right: 1px;
  }

  .hd\:pb-px{
    padding-bottom: 1px;
  }

  .hd\:pl-px{
    padding-left: 1px;
  }

  .hd\:placeholder-border::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:placeholder-border::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:placeholder-border::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:placeholder-border::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:placeholder-form::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-form::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-form::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-form::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-form-active::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-form-active::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-form-active::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-form-active::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-transparent::-webkit-input-placeholder{
    color: transparent;
  }

  .hd\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .hd\:placeholder-transparent::-ms-input-placeholder{
    color: transparent;
  }

  .hd\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .hd\:placeholder-black::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:placeholder-black::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:placeholder-black::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:placeholder-black::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-darker::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-dark::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-light::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:placeholder-grey-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:placeholder-white::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:placeholder-white::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:placeholder-white::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:placeholder-white::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:placeholder-red::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-red::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-red::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-red::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-green::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-green::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-green::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-green::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:placeholder-blue::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:placeholder-blue::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:placeholder-blue::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:placeholder-blue::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:placeholder-orange::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:placeholder-orange::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:placeholder-orange::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:placeholder-orange::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-light::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:placeholder-primary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-light::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:placeholder-secondary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darkest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darkest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darkest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darkest::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darker::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darker::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darker::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-darker::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-dark::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-dark::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-dark::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-dark::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-light::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-light::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-light::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-light::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lighter::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lighter::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lighter::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lighter::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lightest::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lightest::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lightest::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:placeholder-tertiary-lightest::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-border:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-border:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-border:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-border:focus::placeholder{
    --placeholder-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form-active:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form-active:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form-active:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-form-active:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-transparent:focus::-webkit-input-placeholder{
    color: transparent;
  }

  .hd\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .hd\:focus\:placeholder-transparent:focus::-ms-input-placeholder{
    color: transparent;
  }

  .hd\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .hd\:focus\:placeholder-black:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-black:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-black:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-black:focus::placeholder{
    --placeholder-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey:focus::placeholder{
    --placeholder-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-grey-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-white:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-white:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-white:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-white:focus::placeholder{
    --placeholder-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-red:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-red:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-red:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-red:focus::placeholder{
    --placeholder-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-green:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-green:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-green:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-green:focus::placeholder{
    --placeholder-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-blue:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-blue:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-blue:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-blue:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-orange:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-orange:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-orange:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-orange:focus::placeholder{
    --placeholder-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-primary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-secondary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darkest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darkest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darkest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darkest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darker:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darker:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darker:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-darker:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-dark:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-dark:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-dark:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-dark:focus::placeholder{
    --placeholder-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary:focus::placeholder{
    --placeholder-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-light:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-light:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-light:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-light:focus::placeholder{
    --placeholder-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lighter:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lighter:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lighter:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lighter:focus::placeholder{
    --placeholder-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lightest:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lightest:focus::-moz-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lightest:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:focus\:placeholder-tertiary-lightest:focus::placeholder{
    --placeholder-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--placeholder-opacity));
  }

  .hd\:placeholder-opacity-0::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:placeholder-opacity-0::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:placeholder-opacity-0::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:placeholder-opacity-0::placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:placeholder-opacity-25::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:placeholder-opacity-25::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:placeholder-opacity-25::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:placeholder-opacity-25::placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:placeholder-opacity-50::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:placeholder-opacity-50::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:placeholder-opacity-50::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:placeholder-opacity-50::placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:placeholder-opacity-75::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:placeholder-opacity-75::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:placeholder-opacity-75::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:placeholder-opacity-75::placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:placeholder-opacity-100::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:placeholder-opacity-100::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:placeholder-opacity-100::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:placeholder-opacity-100::placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:focus\:placeholder-opacity-0:focus::placeholder{
    --placeholder-opacity: 0;
  }

  .hd\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:focus\:placeholder-opacity-25:focus::placeholder{
    --placeholder-opacity: 0.25;
  }

  .hd\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:focus\:placeholder-opacity-50:focus::placeholder{
    --placeholder-opacity: 0.5;
  }

  .hd\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:focus\:placeholder-opacity-75:focus::placeholder{
    --placeholder-opacity: 0.75;
  }

  .hd\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:focus\:placeholder-opacity-100:focus::placeholder{
    --placeholder-opacity: 1;
  }

  .hd\:pointer-events-none{
    pointer-events: none;
  }

  .hd\:pointer-events-auto{
    pointer-events: auto;
  }

  .hd\:static{
    position: static;
  }

  .hd\:fixed{
    position: fixed;
  }

  .hd\:absolute{
    position: absolute;
  }

  .hd\:relative{
    position: relative;
  }

  .hd\:sticky{
    position: sticky;
  }

  .hd\:inset-0{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .hd\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .hd\:inset-y-0{
    top: 0;
    bottom: 0;
  }

  .hd\:inset-x-0{
    right: 0;
    left: 0;
  }

  .hd\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .hd\:inset-x-auto{
    right: auto;
    left: auto;
  }

  .hd\:top-0{
    top: 0;
  }

  .hd\:right-0{
    right: 0;
  }

  .hd\:bottom-0{
    bottom: 0;
  }

  .hd\:left-0{
    left: 0;
  }

  .hd\:top-auto{
    top: auto;
  }

  .hd\:right-auto{
    right: auto;
  }

  .hd\:bottom-auto{
    bottom: auto;
  }

  .hd\:left-auto{
    left: auto;
  }

  .hd\:resize-none{
    resize: none;
  }

  .hd\:resize-y{
    resize: vertical;
  }

  .hd\:resize-x{
    resize: horizontal;
  }

  .hd\:resize{
    resize: both;
  }

  .hd\:shadow{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .hd\:shadow-md{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .hd\:shadow-lg{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .hd\:shadow-inner{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .hd\:shadow-outline{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .hd\:shadow-none{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .hd\:hover\:shadow:hover{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .hd\:hover\:shadow-md:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .hd\:hover\:shadow-lg:hover{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .hd\:hover\:shadow-inner:hover{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .hd\:hover\:shadow-outline:hover{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .hd\:hover\:shadow-none:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .hd\:focus\:shadow:focus{
    -webkit-box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
            box-shadow: 0 2px 16px 0 rgba(210,210,210,0.15);
  }

  .hd\:focus\:shadow-md:focus{
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  .hd\:focus\:shadow-lg:focus{
    -webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
            box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
  }

  .hd\:focus\:shadow-inner:focus{
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
            box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
  }

  .hd\:focus\:shadow-outline:focus{
    -webkit-box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
            box-shadow: 0 0 0 3px rgba(52,144,220,0.5);
  }

  .hd\:focus\:shadow-none:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .hd\:fill-current{
    fill: currentColor;
  }

  .hd\:stroke-current{
    stroke: currentColor;
  }

  .hd\:stroke-0{
    stroke-width: 0;
  }

  .hd\:stroke-1{
    stroke-width: 1;
  }

  .hd\:stroke-2{
    stroke-width: 2;
  }

  .hd\:table-auto{
    table-layout: auto;
  }

  .hd\:table-fixed{
    table-layout: fixed;
  }

  .hd\:text-left{
    text-align: left;
  }

  .hd\:text-center{
    text-align: center;
  }

  .hd\:text-right{
    text-align: right;
  }

  .hd\:text-justify{
    text-align: justify;
  }

  .hd\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .hd\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:text-transparent{
    color: transparent;
  }

  .hd\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .hd\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .hd\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .hd\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .hd\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .hd\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .hd\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .hd\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .hd\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .hd\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .hd\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .hd\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .hd\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .hd\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .hd\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .hd\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .hd\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .hd\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .hd\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .hd\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .hd\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .hd\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .hd\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .hd\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .hd\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .hd\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .hd\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .hd\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .hd\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .hd\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .hd\:hover\:text-border:hover{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .hd\:hover\:text-form:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:hover\:text-form-active:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:hover\:text-transparent:hover{
    color: transparent;
  }

  .hd\:hover\:text-black:hover{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .hd\:hover\:text-grey-darkest:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:hover\:text-grey-darker:hover{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:hover\:text-grey-dark:hover{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:hover\:text-grey:hover{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:hover\:text-grey-light:hover{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .hd\:hover\:text-grey-lighter:hover{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .hd\:hover\:text-grey-lightest:hover{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .hd\:hover\:text-white:hover{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .hd\:hover\:text-red:hover{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .hd\:hover\:text-green:hover{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .hd\:hover\:text-blue:hover{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .hd\:hover\:text-orange:hover{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .hd\:hover\:text-primary-darkest:hover{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .hd\:hover\:text-primary-darker:hover{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .hd\:hover\:text-primary-dark:hover{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .hd\:hover\:text-primary:hover{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .hd\:hover\:text-primary-light:hover{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .hd\:hover\:text-primary-lighter:hover{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .hd\:hover\:text-primary-lightest:hover{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .hd\:hover\:text-secondary-darkest:hover{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .hd\:hover\:text-secondary-darker:hover{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .hd\:hover\:text-secondary-dark:hover{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .hd\:hover\:text-secondary:hover{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .hd\:hover\:text-secondary-light:hover{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .hd\:hover\:text-secondary-lighter:hover{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .hd\:hover\:text-secondary-lightest:hover{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary-darkest:hover{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary-darker:hover{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary-dark:hover{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary:hover{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary-light:hover{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary-lighter:hover{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .hd\:hover\:text-tertiary-lightest:hover{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .hd\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .hd\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:focus\:text-transparent:focus{
    color: transparent;
  }

  .hd\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .hd\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .hd\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .hd\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .hd\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .hd\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .hd\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .hd\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .hd\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .hd\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .hd\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .hd\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .hd\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .hd\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .hd\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .hd\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .hd\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .hd\:focus\:text-border:focus{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .hd\:focus\:text-form:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:focus\:text-form-active:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:focus\:text-transparent:focus{
    color: transparent;
  }

  .hd\:focus\:text-black:focus{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .hd\:focus\:text-grey-darkest:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:focus\:text-grey-darker:focus{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .hd\:focus\:text-grey-dark:focus{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .hd\:focus\:text-grey:focus{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .hd\:focus\:text-grey-light:focus{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .hd\:focus\:text-grey-lighter:focus{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .hd\:focus\:text-grey-lightest:focus{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .hd\:focus\:text-white:focus{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .hd\:focus\:text-red:focus{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .hd\:focus\:text-green:focus{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .hd\:focus\:text-blue:focus{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .hd\:focus\:text-orange:focus{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .hd\:focus\:text-primary-darkest:focus{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .hd\:focus\:text-primary-darker:focus{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .hd\:focus\:text-primary-dark:focus{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .hd\:focus\:text-primary:focus{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .hd\:focus\:text-primary-light:focus{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .hd\:focus\:text-primary-lighter:focus{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .hd\:focus\:text-primary-lightest:focus{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-darkest:focus{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-darker:focus{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-dark:focus{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .hd\:focus\:text-secondary:focus{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-light:focus{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-lighter:focus{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .hd\:focus\:text-secondary-lightest:focus{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-darkest:focus{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-darker:focus{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-dark:focus{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary:focus{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-light:focus{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-lighter:focus{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .hd\:focus\:text-tertiary-lightest:focus{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-border{
    --text-opacity: 1;
    color: #E6EBF5;
    color: rgba(230, 235, 245, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-form{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-form-active{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .hd\:group-hover\:text-black{
    --text-opacity: 1;
    color: #212529;
    color: rgba(33, 37, 41, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey-darkest{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey-darker{
    --text-opacity: 1;
    color: #9AA5C0;
    color: rgba(154, 165, 192, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey-dark{
    --text-opacity: 1;
    color: #42505C;
    color: rgba(66, 80, 92, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey{
    --text-opacity: 1;
    color: #79828B;
    color: rgba(121, 130, 139, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey-light{
    --text-opacity: 1;
    color: #B3BCC5;
    color: rgba(179, 188, 197, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey-lighter{
    --text-opacity: 1;
    color: #DEE4E9;
    color: rgba(222, 228, 233, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-grey-lightest{
    --text-opacity: 1;
    color: #F4F6F9;
    color: rgba(244, 246, 249, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-white{
    --text-opacity: 1;
    color: #ffffff;
    color: rgba(255, 255, 255, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-red{
    --text-opacity: 1;
    color: #D31A08;
    color: rgba(211, 26, 8, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-green{
    --text-opacity: 1;
    color: #66BB08;
    color: rgba(102, 187, 8, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-blue{
    --text-opacity: 1;
    color: #1FA8E2;
    color: rgba(31, 168, 226, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-orange{
    --text-opacity: 1;
    color: #F7940E;
    color: rgba(247, 148, 14, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary-darkest{
    --text-opacity: 1;
    color: #530f12;
    color: rgba(83, 15, 18, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary-darker{
    --text-opacity: 1;
    color: #7c171b;
    color: rgba(124, 23, 27, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary-dark{
    --text-opacity: 1;
    color: #a61e24;
    color: rgba(166, 30, 36, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary{
    --text-opacity: 1;
    color: #cf262d;
    color: rgba(207, 38, 45, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary-light{
    --text-opacity: 1;
    color: #d95157;
    color: rgba(217, 81, 87, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary-lighter{
    --text-opacity: 1;
    color: #e27d81;
    color: rgba(226, 125, 129, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-primary-lightest{
    --text-opacity: 1;
    color: #eca8ab;
    color: rgba(236, 168, 171, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest{
    --text-opacity: 1;
    color: #3e4525;
    color: rgba(62, 69, 37, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary-darker{
    --text-opacity: 1;
    color: #5e6837;
    color: rgba(94, 104, 55, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary-dark{
    --text-opacity: 1;
    color: #7d8a4a;
    color: rgba(125, 138, 74, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary{
    --text-opacity: 1;
    color: #9cad5c;
    color: rgba(156, 173, 92, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary-light{
    --text-opacity: 1;
    color: #b0bd7d;
    color: rgba(176, 189, 125, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter{
    --text-opacity: 1;
    color: #c4ce9d;
    color: rgba(196, 206, 157, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest{
    --text-opacity: 1;
    color: #d7debe;
    color: rgba(215, 222, 190, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest{
    --text-opacity: 1;
    color: #0f2f21;
    color: rgba(15, 47, 33, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker{
    --text-opacity: 1;
    color: #1a4731;
    color: rgba(26, 71, 49, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark{
    --text-opacity: 1;
    color: #1f9d55;
    color: rgba(31, 157, 85, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary{
    --text-opacity: 1;
    color: #FFC500;
    color: rgba(255, 197, 0, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary-light{
    --text-opacity: 1;
    color: #51d88a;
    color: rgba(81, 216, 138, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter{
    --text-opacity: 1;
    color: #a2f5bf;
    color: rgba(162, 245, 191, var(--text-opacity));
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest{
    --text-opacity: 1;
    color: #e3fcec;
    color: rgba(227, 252, 236, var(--text-opacity));
  }

  .hd\:text-opacity-0{
    --text-opacity: 0;
  }

  .hd\:text-opacity-25{
    --text-opacity: 0.25;
  }

  .hd\:text-opacity-50{
    --text-opacity: 0.5;
  }

  .hd\:text-opacity-75{
    --text-opacity: 0.75;
  }

  .hd\:text-opacity-100{
    --text-opacity: 1;
  }

  .hd\:hover\:text-opacity-0:hover{
    --text-opacity: 0;
  }

  .hd\:hover\:text-opacity-25:hover{
    --text-opacity: 0.25;
  }

  .hd\:hover\:text-opacity-50:hover{
    --text-opacity: 0.5;
  }

  .hd\:hover\:text-opacity-75:hover{
    --text-opacity: 0.75;
  }

  .hd\:hover\:text-opacity-100:hover{
    --text-opacity: 1;
  }

  .hd\:focus\:text-opacity-0:focus{
    --text-opacity: 0;
  }

  .hd\:focus\:text-opacity-25:focus{
    --text-opacity: 0.25;
  }

  .hd\:focus\:text-opacity-50:focus{
    --text-opacity: 0.5;
  }

  .hd\:focus\:text-opacity-75:focus{
    --text-opacity: 0.75;
  }

  .hd\:focus\:text-opacity-100:focus{
    --text-opacity: 1;
  }

  .hd\:italic{
    font-style: italic;
  }

  .hd\:not-italic{
    font-style: normal;
  }

  .hd\:uppercase{
    text-transform: uppercase;
  }

  .hd\:lowercase{
    text-transform: lowercase;
  }

  .hd\:capitalize{
    text-transform: capitalize;
  }

  .hd\:normal-case{
    text-transform: none;
  }

  .hd\:underline{
    text-decoration: underline;
  }

  .hd\:line-through{
    text-decoration: line-through;
  }

  .hd\:no-underline{
    text-decoration: none;
  }

  .hd\:hover\:underline:hover{
    text-decoration: underline;
  }

  .hd\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .hd\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .hd\:focus\:underline:focus{
    text-decoration: underline;
  }

  .hd\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .hd\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .hd\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .hd\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .hd\:ordinal, .hd\:slashed-zero, .hd\:lining-nums, .hd\:oldstyle-nums, .hd\:proportional-nums, .hd\:tabular-nums, .hd\:diagonal-fractions, .hd\: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);
  }

  .hd\:normal-nums{
    font-variant-numeric: normal;
  }

  .hd\:ordinal{
    --font-variant-numeric-ordinal: ordinal;
  }

  .hd\:slashed-zero{
    --font-variant-numeric-slashed-zero: slashed-zero;
  }

  .hd\:lining-nums{
    --font-variant-numeric-figure: lining-nums;
  }

  .hd\:oldstyle-nums{
    --font-variant-numeric-figure: oldstyle-nums;
  }

  .hd\:proportional-nums{
    --font-variant-numeric-spacing: proportional-nums;
  }

  .hd\:tabular-nums{
    --font-variant-numeric-spacing: tabular-nums;
  }

  .hd\:diagonal-fractions{
    --font-variant-numeric-fraction: diagonal-fractions;
  }

  .hd\:stacked-fractions{
    --font-variant-numeric-fraction: stacked-fractions;
  }

  .hd\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .hd\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .hd\:tracking-normal{
    letter-spacing: 0;
  }

  .hd\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .hd\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .hd\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .hd\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .hd\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .hd\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
  }

  .hd\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .hd\:align-baseline{
    vertical-align: baseline;
  }

  .hd\:align-top{
    vertical-align: top;
  }

  .hd\:align-middle{
    vertical-align: middle;
  }

  .hd\:align-bottom{
    vertical-align: bottom;
  }

  .hd\:align-text-top{
    vertical-align: text-top;
  }

  .hd\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .hd\:visible{
    visibility: visible;
  }

  .hd\:invisible{
    visibility: hidden;
  }

  .hd\:whitespace-normal{
    white-space: normal;
  }

  .hd\:whitespace-no-wrap{
    white-space: nowrap;
  }

  .hd\:whitespace-pre{
    white-space: pre;
  }

  .hd\:whitespace-pre-line{
    white-space: pre-line;
  }

  .hd\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .hd\:break-normal{
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hd\:break-words{
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hd\:break-all{
    word-break: break-all;
  }

  .hd\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hd\:w-0{
    width: 0;
  }

  .hd\:w-1{
    width: 0.25rem;
  }

  .hd\:w-2{
    width: 0.5rem;
  }

  .hd\:w-3{
    width: 0.75rem;
  }

  .hd\:w-4{
    width: 1rem;
  }

  .hd\:w-5{
    width: 1.25rem;
  }

  .hd\:w-6{
    width: 1.5rem;
  }

  .hd\:w-8{
    width: 2rem;
  }

  .hd\:w-10{
    width: 2.5rem;
  }

  .hd\:w-12{
    width: 3rem;
  }

  .hd\:w-14{
    width: 3.5rem;
  }

  .hd\:w-16{
    width: 4rem;
  }

  .hd\:w-20{
    width: 5rem;
  }

  .hd\:w-24{
    width: 6rem;
  }

  .hd\:w-32{
    width: 8rem;
  }

  .hd\:w-36{
    width: 9rem;
  }

  .hd\:w-40{
    width: 10rem;
  }

  .hd\:w-44{
    width: 11rem;
  }

  .hd\:w-48{
    width: 12rem;
  }

  .hd\:w-56{
    width: 14rem;
  }

  .hd\:w-64{
    width: 16rem;
  }

  .hd\:w-auto{
    width: auto;
  }

  .hd\:w-px{
    width: 1px;
  }

  .hd\:w-1\/2{
    width: 50%;
  }

  .hd\:w-1\/3{
    width: 33.333333%;
  }

  .hd\:w-2\/3{
    width: 66.666667%;
  }

  .hd\:w-1\/4{
    width: 25%;
  }

  .hd\:w-2\/4{
    width: 50%;
  }

  .hd\:w-3\/4{
    width: 75%;
  }

  .hd\:w-1\/5{
    width: 20%;
  }

  .hd\:w-2\/5{
    width: 40%;
  }

  .hd\:w-3\/5{
    width: 60%;
  }

  .hd\:w-4\/5{
    width: 80%;
  }

  .hd\:w-1\/6{
    width: 16.666667%;
  }

  .hd\:w-2\/6{
    width: 33.333333%;
  }

  .hd\:w-3\/6{
    width: 50%;
  }

  .hd\:w-4\/6{
    width: 66.666667%;
  }

  .hd\:w-5\/6{
    width: 83.333333%;
  }

  .hd\:w-1\/12{
    width: 8.333333%;
  }

  .hd\:w-2\/12{
    width: 16.666667%;
  }

  .hd\:w-3\/12{
    width: 25%;
  }

  .hd\:w-4\/12{
    width: 33.333333%;
  }

  .hd\:w-5\/12{
    width: 41.666667%;
  }

  .hd\:w-6\/12{
    width: 50%;
  }

  .hd\:w-7\/12{
    width: 58.333333%;
  }

  .hd\:w-8\/12{
    width: 66.666667%;
  }

  .hd\:w-9\/12{
    width: 75%;
  }

  .hd\:w-10\/12{
    width: 83.333333%;
  }

  .hd\:w-11\/12{
    width: 91.666667%;
  }

  .hd\:w-full{
    width: 100%;
  }

  .hd\:w-screen{
    width: 100vw;
  }

  .hd\:z-0{
    z-index: 0;
  }

  .hd\:z-10{
    z-index: 10;
  }

  .hd\:z-20{
    z-index: 20;
  }

  .hd\:z-30{
    z-index: 30;
  }

  .hd\:z-40{
    z-index: 40;
  }

  .hd\:z-50{
    z-index: 50;
  }

  .hd\:z-auto{
    z-index: auto;
  }

  .hd\:gap-0{
    grid-gap: 0;
    gap: 0;
  }

  .hd\:gap-1{
    grid-gap: 0.25rem;
    gap: 0.25rem;
  }

  .hd\:gap-2{
    grid-gap: 0.5rem;
    gap: 0.5rem;
  }

  .hd\:gap-3{
    grid-gap: 0.75rem;
    gap: 0.75rem;
  }

  .hd\:gap-4{
    grid-gap: 1rem;
    gap: 1rem;
  }

  .hd\:gap-5{
    grid-gap: 1.25rem;
    gap: 1.25rem;
  }

  .hd\:gap-6{
    grid-gap: 1.5rem;
    gap: 1.5rem;
  }

  .hd\:gap-8{
    grid-gap: 2rem;
    gap: 2rem;
  }

  .hd\:gap-10{
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }

  .hd\:gap-12{
    grid-gap: 3rem;
    gap: 3rem;
  }

  .hd\:gap-14{
    grid-gap: 3.5rem;
    gap: 3.5rem;
  }

  .hd\:gap-16{
    grid-gap: 4rem;
    gap: 4rem;
  }

  .hd\:gap-20{
    grid-gap: 5rem;
    gap: 5rem;
  }

  .hd\:gap-24{
    grid-gap: 6rem;
    gap: 6rem;
  }

  .hd\:gap-32{
    grid-gap: 8rem;
    gap: 8rem;
  }

  .hd\:gap-36{
    grid-gap: 9rem;
    gap: 9rem;
  }

  .hd\:gap-40{
    grid-gap: 10rem;
    gap: 10rem;
  }

  .hd\:gap-44{
    grid-gap: 11rem;
    gap: 11rem;
  }

  .hd\:gap-48{
    grid-gap: 12rem;
    gap: 12rem;
  }

  .hd\:gap-56{
    grid-gap: 14rem;
    gap: 14rem;
  }

  .hd\:gap-64{
    grid-gap: 16rem;
    gap: 16rem;
  }

  .hd\:gap-px{
    grid-gap: 1px;
    gap: 1px;
  }

  .hd\:col-gap-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .hd\:col-gap-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .hd\:col-gap-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .hd\:col-gap-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .hd\:col-gap-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .hd\:col-gap-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .hd\:col-gap-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .hd\:col-gap-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .hd\:col-gap-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .hd\:col-gap-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .hd\:col-gap-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .hd\:col-gap-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .hd\:col-gap-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .hd\:col-gap-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .hd\:col-gap-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .hd\:col-gap-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .hd\:col-gap-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .hd\:col-gap-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .hd\:col-gap-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .hd\:col-gap-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .hd\:col-gap-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .hd\:col-gap-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .hd\:gap-x-0{
    grid-column-gap: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }

  .hd\:gap-x-1{
    grid-column-gap: 0.25rem;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }

  .hd\:gap-x-2{
    grid-column-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }

  .hd\:gap-x-3{
    grid-column-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }

  .hd\:gap-x-4{
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }

  .hd\:gap-x-5{
    grid-column-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .hd\:gap-x-6{
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }

  .hd\:gap-x-8{
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .hd\:gap-x-10{
    grid-column-gap: 2.5rem;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }

  .hd\:gap-x-12{
    grid-column-gap: 3rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }

  .hd\:gap-x-14{
    grid-column-gap: 3.5rem;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .hd\:gap-x-16{
    grid-column-gap: 4rem;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }

  .hd\:gap-x-20{
    grid-column-gap: 5rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }

  .hd\:gap-x-24{
    grid-column-gap: 6rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }

  .hd\:gap-x-32{
    grid-column-gap: 8rem;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
  }

  .hd\:gap-x-36{
    grid-column-gap: 9rem;
    -webkit-column-gap: 9rem;
       -moz-column-gap: 9rem;
            column-gap: 9rem;
  }

  .hd\:gap-x-40{
    grid-column-gap: 10rem;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }

  .hd\:gap-x-44{
    grid-column-gap: 11rem;
    -webkit-column-gap: 11rem;
       -moz-column-gap: 11rem;
            column-gap: 11rem;
  }

  .hd\:gap-x-48{
    grid-column-gap: 12rem;
    -webkit-column-gap: 12rem;
       -moz-column-gap: 12rem;
            column-gap: 12rem;
  }

  .hd\:gap-x-56{
    grid-column-gap: 14rem;
    -webkit-column-gap: 14rem;
       -moz-column-gap: 14rem;
            column-gap: 14rem;
  }

  .hd\:gap-x-64{
    grid-column-gap: 16rem;
    -webkit-column-gap: 16rem;
       -moz-column-gap: 16rem;
            column-gap: 16rem;
  }

  .hd\:gap-x-px{
    grid-column-gap: 1px;
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }

  .hd\:row-gap-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .hd\:row-gap-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .hd\:row-gap-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .hd\:row-gap-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .hd\:row-gap-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .hd\:row-gap-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .hd\:row-gap-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .hd\:row-gap-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .hd\:row-gap-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .hd\:row-gap-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .hd\:row-gap-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .hd\:row-gap-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .hd\:row-gap-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .hd\:row-gap-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .hd\:row-gap-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .hd\:row-gap-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .hd\:row-gap-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .hd\:row-gap-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .hd\:row-gap-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .hd\:row-gap-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .hd\:row-gap-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .hd\:row-gap-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .hd\:gap-y-0{
    grid-row-gap: 0;
    row-gap: 0;
  }

  .hd\:gap-y-1{
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
  }

  .hd\:gap-y-2{
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .hd\:gap-y-3{
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .hd\:gap-y-4{
    grid-row-gap: 1rem;
    row-gap: 1rem;
  }

  .hd\:gap-y-5{
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .hd\:gap-y-6{
    grid-row-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .hd\:gap-y-8{
    grid-row-gap: 2rem;
    row-gap: 2rem;
  }

  .hd\:gap-y-10{
    grid-row-gap: 2.5rem;
    row-gap: 2.5rem;
  }

  .hd\:gap-y-12{
    grid-row-gap: 3rem;
    row-gap: 3rem;
  }

  .hd\:gap-y-14{
    grid-row-gap: 3.5rem;
    row-gap: 3.5rem;
  }

  .hd\:gap-y-16{
    grid-row-gap: 4rem;
    row-gap: 4rem;
  }

  .hd\:gap-y-20{
    grid-row-gap: 5rem;
    row-gap: 5rem;
  }

  .hd\:gap-y-24{
    grid-row-gap: 6rem;
    row-gap: 6rem;
  }

  .hd\:gap-y-32{
    grid-row-gap: 8rem;
    row-gap: 8rem;
  }

  .hd\:gap-y-36{
    grid-row-gap: 9rem;
    row-gap: 9rem;
  }

  .hd\:gap-y-40{
    grid-row-gap: 10rem;
    row-gap: 10rem;
  }

  .hd\:gap-y-44{
    grid-row-gap: 11rem;
    row-gap: 11rem;
  }

  .hd\:gap-y-48{
    grid-row-gap: 12rem;
    row-gap: 12rem;
  }

  .hd\:gap-y-56{
    grid-row-gap: 14rem;
    row-gap: 14rem;
  }

  .hd\:gap-y-64{
    grid-row-gap: 16rem;
    row-gap: 16rem;
  }

  .hd\:gap-y-px{
    grid-row-gap: 1px;
    row-gap: 1px;
  }

  .hd\:grid-flow-row{
    grid-auto-flow: row;
  }

  .hd\:grid-flow-col{
    grid-auto-flow: column;
  }

  .hd\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .hd\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .hd\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hd\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hd\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hd\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hd\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hd\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .hd\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .hd\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .hd\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .hd\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .hd\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .hd\:grid-cols-none{
    grid-template-columns: none;
  }

  .hd\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .hd\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .hd\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .hd\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

  .hd\:col-auto{
    grid-column: auto;
  }

  .hd\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .hd\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .hd\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .hd\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .hd\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .hd\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .hd\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .hd\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .hd\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .hd\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .hd\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .hd\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .hd\:col-span-full{
    grid-column: 1 / -1;
  }

  .hd\:col-start-1{
    grid-column-start: 1;
  }

  .hd\:col-start-2{
    grid-column-start: 2;
  }

  .hd\:col-start-3{
    grid-column-start: 3;
  }

  .hd\:col-start-4{
    grid-column-start: 4;
  }

  .hd\:col-start-5{
    grid-column-start: 5;
  }

  .hd\:col-start-6{
    grid-column-start: 6;
  }

  .hd\:col-start-7{
    grid-column-start: 7;
  }

  .hd\:col-start-8{
    grid-column-start: 8;
  }

  .hd\:col-start-9{
    grid-column-start: 9;
  }

  .hd\:col-start-10{
    grid-column-start: 10;
  }

  .hd\:col-start-11{
    grid-column-start: 11;
  }

  .hd\:col-start-12{
    grid-column-start: 12;
  }

  .hd\:col-start-13{
    grid-column-start: 13;
  }

  .hd\:col-start-auto{
    grid-column-start: auto;
  }

  .hd\:col-end-1{
    grid-column-end: 1;
  }

  .hd\:col-end-2{
    grid-column-end: 2;
  }

  .hd\:col-end-3{
    grid-column-end: 3;
  }

  .hd\:col-end-4{
    grid-column-end: 4;
  }

  .hd\:col-end-5{
    grid-column-end: 5;
  }

  .hd\:col-end-6{
    grid-column-end: 6;
  }

  .hd\:col-end-7{
    grid-column-end: 7;
  }

  .hd\:col-end-8{
    grid-column-end: 8;
  }

  .hd\:col-end-9{
    grid-column-end: 9;
  }

  .hd\:col-end-10{
    grid-column-end: 10;
  }

  .hd\:col-end-11{
    grid-column-end: 11;
  }

  .hd\:col-end-12{
    grid-column-end: 12;
  }

  .hd\:col-end-13{
    grid-column-end: 13;
  }

  .hd\:col-end-auto{
    grid-column-end: auto;
  }

  .hd\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .hd\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .hd\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .hd\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .hd\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .hd\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .hd\:grid-rows-none{
    grid-template-rows: none;
  }

  .hd\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .hd\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .hd\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .hd\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .hd\:row-auto{
    grid-row: auto;
  }

  .hd\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .hd\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .hd\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .hd\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .hd\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .hd\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .hd\:row-span-full{
    grid-row: 1 / -1;
  }

  .hd\:row-start-1{
    grid-row-start: 1;
  }

  .hd\:row-start-2{
    grid-row-start: 2;
  }

  .hd\:row-start-3{
    grid-row-start: 3;
  }

  .hd\:row-start-4{
    grid-row-start: 4;
  }

  .hd\:row-start-5{
    grid-row-start: 5;
  }

  .hd\:row-start-6{
    grid-row-start: 6;
  }

  .hd\:row-start-7{
    grid-row-start: 7;
  }

  .hd\:row-start-auto{
    grid-row-start: auto;
  }

  .hd\:row-end-1{
    grid-row-end: 1;
  }

  .hd\:row-end-2{
    grid-row-end: 2;
  }

  .hd\:row-end-3{
    grid-row-end: 3;
  }

  .hd\:row-end-4{
    grid-row-end: 4;
  }

  .hd\:row-end-5{
    grid-row-end: 5;
  }

  .hd\:row-end-6{
    grid-row-end: 6;
  }

  .hd\:row-end-7{
    grid-row-end: 7;
  }

  .hd\:row-end-auto{
    grid-row-end: auto;
  }

  .hd\: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;
    -webkit-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: 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));
  }

  .hd\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .hd\:origin-center{
    -webkit-transform-origin: center;
            transform-origin: center;
  }

  .hd\:origin-top{
    -webkit-transform-origin: top;
            transform-origin: top;
  }

  .hd\:origin-top-right{
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }

  .hd\:origin-right{
    -webkit-transform-origin: right;
            transform-origin: right;
  }

  .hd\:origin-bottom-right{
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }

  .hd\:origin-bottom{
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }

  .hd\:origin-bottom-left{
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }

  .hd\:origin-left{
    -webkit-transform-origin: left;
            transform-origin: left;
  }

  .hd\:origin-top-left{
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }

  .hd\:scale-0{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .hd\:scale-50{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .hd\:scale-75{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .hd\:scale-90{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .hd\:scale-95{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .hd\:scale-100{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .hd\:scale-105{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .hd\:scale-110{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .hd\:scale-125{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .hd\:scale-150{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .hd\:scale-x-0{
    --transform-scale-x: 0;
  }

  .hd\:scale-x-50{
    --transform-scale-x: .5;
  }

  .hd\:scale-x-75{
    --transform-scale-x: .75;
  }

  .hd\:scale-x-90{
    --transform-scale-x: .9;
  }

  .hd\:scale-x-95{
    --transform-scale-x: .95;
  }

  .hd\:scale-x-100{
    --transform-scale-x: 1;
  }

  .hd\:scale-x-105{
    --transform-scale-x: 1.05;
  }

  .hd\:scale-x-110{
    --transform-scale-x: 1.1;
  }

  .hd\:scale-x-125{
    --transform-scale-x: 1.25;
  }

  .hd\:scale-x-150{
    --transform-scale-x: 1.5;
  }

  .hd\:scale-y-0{
    --transform-scale-y: 0;
  }

  .hd\:scale-y-50{
    --transform-scale-y: .5;
  }

  .hd\:scale-y-75{
    --transform-scale-y: .75;
  }

  .hd\:scale-y-90{
    --transform-scale-y: .9;
  }

  .hd\:scale-y-95{
    --transform-scale-y: .95;
  }

  .hd\:scale-y-100{
    --transform-scale-y: 1;
  }

  .hd\:scale-y-105{
    --transform-scale-y: 1.05;
  }

  .hd\:scale-y-110{
    --transform-scale-y: 1.1;
  }

  .hd\:scale-y-125{
    --transform-scale-y: 1.25;
  }

  .hd\:scale-y-150{
    --transform-scale-y: 1.5;
  }

  .hd\:hover\:scale-0:hover{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .hd\:hover\:scale-50:hover{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .hd\:hover\:scale-75:hover{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .hd\:hover\:scale-90:hover{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .hd\:hover\:scale-95:hover{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .hd\:hover\:scale-100:hover{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .hd\:hover\:scale-105:hover{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .hd\:hover\:scale-110:hover{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .hd\:hover\:scale-125:hover{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .hd\:hover\:scale-150:hover{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .hd\:hover\:scale-x-0:hover{
    --transform-scale-x: 0;
  }

  .hd\:hover\:scale-x-50:hover{
    --transform-scale-x: .5;
  }

  .hd\:hover\:scale-x-75:hover{
    --transform-scale-x: .75;
  }

  .hd\:hover\:scale-x-90:hover{
    --transform-scale-x: .9;
  }

  .hd\:hover\:scale-x-95:hover{
    --transform-scale-x: .95;
  }

  .hd\:hover\:scale-x-100:hover{
    --transform-scale-x: 1;
  }

  .hd\:hover\:scale-x-105:hover{
    --transform-scale-x: 1.05;
  }

  .hd\:hover\:scale-x-110:hover{
    --transform-scale-x: 1.1;
  }

  .hd\:hover\:scale-x-125:hover{
    --transform-scale-x: 1.25;
  }

  .hd\:hover\:scale-x-150:hover{
    --transform-scale-x: 1.5;
  }

  .hd\:hover\:scale-y-0:hover{
    --transform-scale-y: 0;
  }

  .hd\:hover\:scale-y-50:hover{
    --transform-scale-y: .5;
  }

  .hd\:hover\:scale-y-75:hover{
    --transform-scale-y: .75;
  }

  .hd\:hover\:scale-y-90:hover{
    --transform-scale-y: .9;
  }

  .hd\:hover\:scale-y-95:hover{
    --transform-scale-y: .95;
  }

  .hd\:hover\:scale-y-100:hover{
    --transform-scale-y: 1;
  }

  .hd\:hover\:scale-y-105:hover{
    --transform-scale-y: 1.05;
  }

  .hd\:hover\:scale-y-110:hover{
    --transform-scale-y: 1.1;
  }

  .hd\:hover\:scale-y-125:hover{
    --transform-scale-y: 1.25;
  }

  .hd\:hover\:scale-y-150:hover{
    --transform-scale-y: 1.5;
  }

  .hd\:focus\:scale-0:focus{
    --transform-scale-x: 0;
    --transform-scale-y: 0;
  }

  .hd\:focus\:scale-50:focus{
    --transform-scale-x: .5;
    --transform-scale-y: .5;
  }

  .hd\:focus\:scale-75:focus{
    --transform-scale-x: .75;
    --transform-scale-y: .75;
  }

  .hd\:focus\:scale-90:focus{
    --transform-scale-x: .9;
    --transform-scale-y: .9;
  }

  .hd\:focus\:scale-95:focus{
    --transform-scale-x: .95;
    --transform-scale-y: .95;
  }

  .hd\:focus\:scale-100:focus{
    --transform-scale-x: 1;
    --transform-scale-y: 1;
  }

  .hd\:focus\:scale-105:focus{
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
  }

  .hd\:focus\:scale-110:focus{
    --transform-scale-x: 1.1;
    --transform-scale-y: 1.1;
  }

  .hd\:focus\:scale-125:focus{
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
  }

  .hd\:focus\:scale-150:focus{
    --transform-scale-x: 1.5;
    --transform-scale-y: 1.5;
  }

  .hd\:focus\:scale-x-0:focus{
    --transform-scale-x: 0;
  }

  .hd\:focus\:scale-x-50:focus{
    --transform-scale-x: .5;
  }

  .hd\:focus\:scale-x-75:focus{
    --transform-scale-x: .75;
  }

  .hd\:focus\:scale-x-90:focus{
    --transform-scale-x: .9;
  }

  .hd\:focus\:scale-x-95:focus{
    --transform-scale-x: .95;
  }

  .hd\:focus\:scale-x-100:focus{
    --transform-scale-x: 1;
  }

  .hd\:focus\:scale-x-105:focus{
    --transform-scale-x: 1.05;
  }

  .hd\:focus\:scale-x-110:focus{
    --transform-scale-x: 1.1;
  }

  .hd\:focus\:scale-x-125:focus{
    --transform-scale-x: 1.25;
  }

  .hd\:focus\:scale-x-150:focus{
    --transform-scale-x: 1.5;
  }

  .hd\:focus\:scale-y-0:focus{
    --transform-scale-y: 0;
  }

  .hd\:focus\:scale-y-50:focus{
    --transform-scale-y: .5;
  }

  .hd\:focus\:scale-y-75:focus{
    --transform-scale-y: .75;
  }

  .hd\:focus\:scale-y-90:focus{
    --transform-scale-y: .9;
  }

  .hd\:focus\:scale-y-95:focus{
    --transform-scale-y: .95;
  }

  .hd\:focus\:scale-y-100:focus{
    --transform-scale-y: 1;
  }

  .hd\:focus\:scale-y-105:focus{
    --transform-scale-y: 1.05;
  }

  .hd\:focus\:scale-y-110:focus{
    --transform-scale-y: 1.1;
  }

  .hd\:focus\:scale-y-125:focus{
    --transform-scale-y: 1.25;
  }

  .hd\:focus\:scale-y-150:focus{
    --transform-scale-y: 1.5;
  }

  .hd\:rotate-0{
    --transform-rotate: 0;
  }

  .hd\:rotate-1{
    --transform-rotate: 1deg;
  }

  .hd\:rotate-2{
    --transform-rotate: 2deg;
  }

  .hd\:rotate-3{
    --transform-rotate: 3deg;
  }

  .hd\:rotate-6{
    --transform-rotate: 6deg;
  }

  .hd\:rotate-12{
    --transform-rotate: 12deg;
  }

  .hd\:rotate-45{
    --transform-rotate: 45deg;
  }

  .hd\:rotate-90{
    --transform-rotate: 90deg;
  }

  .hd\:rotate-180{
    --transform-rotate: 180deg;
  }

  .hd\:-rotate-180{
    --transform-rotate: -180deg;
  }

  .hd\:-rotate-90{
    --transform-rotate: -90deg;
  }

  .hd\:-rotate-45{
    --transform-rotate: -45deg;
  }

  .hd\:-rotate-12{
    --transform-rotate: -12deg;
  }

  .hd\:-rotate-6{
    --transform-rotate: -6deg;
  }

  .hd\:-rotate-3{
    --transform-rotate: -3deg;
  }

  .hd\:-rotate-2{
    --transform-rotate: -2deg;
  }

  .hd\:-rotate-1{
    --transform-rotate: -1deg;
  }

  .hd\:hover\:rotate-0:hover{
    --transform-rotate: 0;
  }

  .hd\:hover\:rotate-1:hover{
    --transform-rotate: 1deg;
  }

  .hd\:hover\:rotate-2:hover{
    --transform-rotate: 2deg;
  }

  .hd\:hover\:rotate-3:hover{
    --transform-rotate: 3deg;
  }

  .hd\:hover\:rotate-6:hover{
    --transform-rotate: 6deg;
  }

  .hd\:hover\:rotate-12:hover{
    --transform-rotate: 12deg;
  }

  .hd\:hover\:rotate-45:hover{
    --transform-rotate: 45deg;
  }

  .hd\:hover\:rotate-90:hover{
    --transform-rotate: 90deg;
  }

  .hd\:hover\:rotate-180:hover{
    --transform-rotate: 180deg;
  }

  .hd\:hover\:-rotate-180:hover{
    --transform-rotate: -180deg;
  }

  .hd\:hover\:-rotate-90:hover{
    --transform-rotate: -90deg;
  }

  .hd\:hover\:-rotate-45:hover{
    --transform-rotate: -45deg;
  }

  .hd\:hover\:-rotate-12:hover{
    --transform-rotate: -12deg;
  }

  .hd\:hover\:-rotate-6:hover{
    --transform-rotate: -6deg;
  }

  .hd\:hover\:-rotate-3:hover{
    --transform-rotate: -3deg;
  }

  .hd\:hover\:-rotate-2:hover{
    --transform-rotate: -2deg;
  }

  .hd\:hover\:-rotate-1:hover{
    --transform-rotate: -1deg;
  }

  .hd\:focus\:rotate-0:focus{
    --transform-rotate: 0;
  }

  .hd\:focus\:rotate-1:focus{
    --transform-rotate: 1deg;
  }

  .hd\:focus\:rotate-2:focus{
    --transform-rotate: 2deg;
  }

  .hd\:focus\:rotate-3:focus{
    --transform-rotate: 3deg;
  }

  .hd\:focus\:rotate-6:focus{
    --transform-rotate: 6deg;
  }

  .hd\:focus\:rotate-12:focus{
    --transform-rotate: 12deg;
  }

  .hd\:focus\:rotate-45:focus{
    --transform-rotate: 45deg;
  }

  .hd\:focus\:rotate-90:focus{
    --transform-rotate: 90deg;
  }

  .hd\:focus\:rotate-180:focus{
    --transform-rotate: 180deg;
  }

  .hd\:focus\:-rotate-180:focus{
    --transform-rotate: -180deg;
  }

  .hd\:focus\:-rotate-90:focus{
    --transform-rotate: -90deg;
  }

  .hd\:focus\:-rotate-45:focus{
    --transform-rotate: -45deg;
  }

  .hd\:focus\:-rotate-12:focus{
    --transform-rotate: -12deg;
  }

  .hd\:focus\:-rotate-6:focus{
    --transform-rotate: -6deg;
  }

  .hd\:focus\:-rotate-3:focus{
    --transform-rotate: -3deg;
  }

  .hd\:focus\:-rotate-2:focus{
    --transform-rotate: -2deg;
  }

  .hd\:focus\:-rotate-1:focus{
    --transform-rotate: -1deg;
  }

  .hd\:translate-x-0{
    --transform-translate-x: 0;
  }

  .hd\:translate-x-1{
    --transform-translate-x: 0.25rem;
  }

  .hd\:translate-x-2{
    --transform-translate-x: 0.5rem;
  }

  .hd\:translate-x-3{
    --transform-translate-x: 0.75rem;
  }

  .hd\:translate-x-4{
    --transform-translate-x: 1rem;
  }

  .hd\:translate-x-5{
    --transform-translate-x: 1.25rem;
  }

  .hd\:translate-x-6{
    --transform-translate-x: 1.5rem;
  }

  .hd\:translate-x-8{
    --transform-translate-x: 2rem;
  }

  .hd\:translate-x-10{
    --transform-translate-x: 2.5rem;
  }

  .hd\:translate-x-12{
    --transform-translate-x: 3rem;
  }

  .hd\:translate-x-14{
    --transform-translate-x: 3.5rem;
  }

  .hd\:translate-x-16{
    --transform-translate-x: 4rem;
  }

  .hd\:translate-x-20{
    --transform-translate-x: 5rem;
  }

  .hd\:translate-x-24{
    --transform-translate-x: 6rem;
  }

  .hd\:translate-x-32{
    --transform-translate-x: 8rem;
  }

  .hd\:translate-x-36{
    --transform-translate-x: 9rem;
  }

  .hd\:translate-x-40{
    --transform-translate-x: 10rem;
  }

  .hd\:translate-x-44{
    --transform-translate-x: 11rem;
  }

  .hd\:translate-x-48{
    --transform-translate-x: 12rem;
  }

  .hd\:translate-x-56{
    --transform-translate-x: 14rem;
  }

  .hd\:translate-x-64{
    --transform-translate-x: 16rem;
  }

  .hd\:translate-x-px{
    --transform-translate-x: 1px;
  }

  .hd\:-translate-x-1{
    --transform-translate-x: -0.25rem;
  }

  .hd\:-translate-x-2{
    --transform-translate-x: -0.5rem;
  }

  .hd\:-translate-x-3{
    --transform-translate-x: -0.75rem;
  }

  .hd\:-translate-x-4{
    --transform-translate-x: -1rem;
  }

  .hd\:-translate-x-5{
    --transform-translate-x: -1.25rem;
  }

  .hd\:-translate-x-6{
    --transform-translate-x: -1.5rem;
  }

  .hd\:-translate-x-8{
    --transform-translate-x: -2rem;
  }

  .hd\:-translate-x-10{
    --transform-translate-x: -2.5rem;
  }

  .hd\:-translate-x-12{
    --transform-translate-x: -3rem;
  }

  .hd\:-translate-x-14{
    --transform-translate-x: -3.5rem;
  }

  .hd\:-translate-x-16{
    --transform-translate-x: -4rem;
  }

  .hd\:-translate-x-20{
    --transform-translate-x: -5rem;
  }

  .hd\:-translate-x-24{
    --transform-translate-x: -6rem;
  }

  .hd\:-translate-x-32{
    --transform-translate-x: -8rem;
  }

  .hd\:-translate-x-36{
    --transform-translate-x: -9rem;
  }

  .hd\:-translate-x-40{
    --transform-translate-x: -10rem;
  }

  .hd\:-translate-x-44{
    --transform-translate-x: -11rem;
  }

  .hd\:-translate-x-48{
    --transform-translate-x: -12rem;
  }

  .hd\:-translate-x-56{
    --transform-translate-x: -14rem;
  }

  .hd\:-translate-x-64{
    --transform-translate-x: -16rem;
  }

  .hd\:-translate-x-px{
    --transform-translate-x: -1px;
  }

  .hd\:-translate-x-full{
    --transform-translate-x: -100%;
  }

  .hd\:-translate-x-1\/2{
    --transform-translate-x: -50%;
  }

  .hd\:translate-x-1\/2{
    --transform-translate-x: 50%;
  }

  .hd\:translate-x-full{
    --transform-translate-x: 100%;
  }

  .hd\:translate-y-0{
    --transform-translate-y: 0;
  }

  .hd\:translate-y-1{
    --transform-translate-y: 0.25rem;
  }

  .hd\:translate-y-2{
    --transform-translate-y: 0.5rem;
  }

  .hd\:translate-y-3{
    --transform-translate-y: 0.75rem;
  }

  .hd\:translate-y-4{
    --transform-translate-y: 1rem;
  }

  .hd\:translate-y-5{
    --transform-translate-y: 1.25rem;
  }

  .hd\:translate-y-6{
    --transform-translate-y: 1.5rem;
  }

  .hd\:translate-y-8{
    --transform-translate-y: 2rem;
  }

  .hd\:translate-y-10{
    --transform-translate-y: 2.5rem;
  }

  .hd\:translate-y-12{
    --transform-translate-y: 3rem;
  }

  .hd\:translate-y-14{
    --transform-translate-y: 3.5rem;
  }

  .hd\:translate-y-16{
    --transform-translate-y: 4rem;
  }

  .hd\:translate-y-20{
    --transform-translate-y: 5rem;
  }

  .hd\:translate-y-24{
    --transform-translate-y: 6rem;
  }

  .hd\:translate-y-32{
    --transform-translate-y: 8rem;
  }

  .hd\:translate-y-36{
    --transform-translate-y: 9rem;
  }

  .hd\:translate-y-40{
    --transform-translate-y: 10rem;
  }

  .hd\:translate-y-44{
    --transform-translate-y: 11rem;
  }

  .hd\:translate-y-48{
    --transform-translate-y: 12rem;
  }

  .hd\:translate-y-56{
    --transform-translate-y: 14rem;
  }

  .hd\:translate-y-64{
    --transform-translate-y: 16rem;
  }

  .hd\:translate-y-px{
    --transform-translate-y: 1px;
  }

  .hd\:-translate-y-1{
    --transform-translate-y: -0.25rem;
  }

  .hd\:-translate-y-2{
    --transform-translate-y: -0.5rem;
  }

  .hd\:-translate-y-3{
    --transform-translate-y: -0.75rem;
  }

  .hd\:-translate-y-4{
    --transform-translate-y: -1rem;
  }

  .hd\:-translate-y-5{
    --transform-translate-y: -1.25rem;
  }

  .hd\:-translate-y-6{
    --transform-translate-y: -1.5rem;
  }

  .hd\:-translate-y-8{
    --transform-translate-y: -2rem;
  }

  .hd\:-translate-y-10{
    --transform-translate-y: -2.5rem;
  }

  .hd\:-translate-y-12{
    --transform-translate-y: -3rem;
  }

  .hd\:-translate-y-14{
    --transform-translate-y: -3.5rem;
  }

  .hd\:-translate-y-16{
    --transform-translate-y: -4rem;
  }

  .hd\:-translate-y-20{
    --transform-translate-y: -5rem;
  }

  .hd\:-translate-y-24{
    --transform-translate-y: -6rem;
  }

  .hd\:-translate-y-32{
    --transform-translate-y: -8rem;
  }

  .hd\:-translate-y-36{
    --transform-translate-y: -9rem;
  }

  .hd\:-translate-y-40{
    --transform-translate-y: -10rem;
  }

  .hd\:-translate-y-44{
    --transform-translate-y: -11rem;
  }

  .hd\:-translate-y-48{
    --transform-translate-y: -12rem;
  }

  .hd\:-translate-y-56{
    --transform-translate-y: -14rem;
  }

  .hd\:-translate-y-64{
    --transform-translate-y: -16rem;
  }

  .hd\:-translate-y-px{
    --transform-translate-y: -1px;
  }

  .hd\:-translate-y-full{
    --transform-translate-y: -100%;
  }

  .hd\:-translate-y-1\/2{
    --transform-translate-y: -50%;
  }

  .hd\:translate-y-1\/2{
    --transform-translate-y: 50%;
  }

  .hd\:translate-y-full{
    --transform-translate-y: 100%;
  }

  .hd\:hover\:translate-x-0:hover{
    --transform-translate-x: 0;
  }

  .hd\:hover\:translate-x-1:hover{
    --transform-translate-x: 0.25rem;
  }

  .hd\:hover\:translate-x-2:hover{
    --transform-translate-x: 0.5rem;
  }

  .hd\:hover\:translate-x-3:hover{
    --transform-translate-x: 0.75rem;
  }

  .hd\:hover\:translate-x-4:hover{
    --transform-translate-x: 1rem;
  }

  .hd\:hover\:translate-x-5:hover{
    --transform-translate-x: 1.25rem;
  }

  .hd\:hover\:translate-x-6:hover{
    --transform-translate-x: 1.5rem;
  }

  .hd\:hover\:translate-x-8:hover{
    --transform-translate-x: 2rem;
  }

  .hd\:hover\:translate-x-10:hover{
    --transform-translate-x: 2.5rem;
  }

  .hd\:hover\:translate-x-12:hover{
    --transform-translate-x: 3rem;
  }

  .hd\:hover\:translate-x-14:hover{
    --transform-translate-x: 3.5rem;
  }

  .hd\:hover\:translate-x-16:hover{
    --transform-translate-x: 4rem;
  }

  .hd\:hover\:translate-x-20:hover{
    --transform-translate-x: 5rem;
  }

  .hd\:hover\:translate-x-24:hover{
    --transform-translate-x: 6rem;
  }

  .hd\:hover\:translate-x-32:hover{
    --transform-translate-x: 8rem;
  }

  .hd\:hover\:translate-x-36:hover{
    --transform-translate-x: 9rem;
  }

  .hd\:hover\:translate-x-40:hover{
    --transform-translate-x: 10rem;
  }

  .hd\:hover\:translate-x-44:hover{
    --transform-translate-x: 11rem;
  }

  .hd\:hover\:translate-x-48:hover{
    --transform-translate-x: 12rem;
  }

  .hd\:hover\:translate-x-56:hover{
    --transform-translate-x: 14rem;
  }

  .hd\:hover\:translate-x-64:hover{
    --transform-translate-x: 16rem;
  }

  .hd\:hover\:translate-x-px:hover{
    --transform-translate-x: 1px;
  }

  .hd\:hover\:-translate-x-1:hover{
    --transform-translate-x: -0.25rem;
  }

  .hd\:hover\:-translate-x-2:hover{
    --transform-translate-x: -0.5rem;
  }

  .hd\:hover\:-translate-x-3:hover{
    --transform-translate-x: -0.75rem;
  }

  .hd\:hover\:-translate-x-4:hover{
    --transform-translate-x: -1rem;
  }

  .hd\:hover\:-translate-x-5:hover{
    --transform-translate-x: -1.25rem;
  }

  .hd\:hover\:-translate-x-6:hover{
    --transform-translate-x: -1.5rem;
  }

  .hd\:hover\:-translate-x-8:hover{
    --transform-translate-x: -2rem;
  }

  .hd\:hover\:-translate-x-10:hover{
    --transform-translate-x: -2.5rem;
  }

  .hd\:hover\:-translate-x-12:hover{
    --transform-translate-x: -3rem;
  }

  .hd\:hover\:-translate-x-14:hover{
    --transform-translate-x: -3.5rem;
  }

  .hd\:hover\:-translate-x-16:hover{
    --transform-translate-x: -4rem;
  }

  .hd\:hover\:-translate-x-20:hover{
    --transform-translate-x: -5rem;
  }

  .hd\:hover\:-translate-x-24:hover{
    --transform-translate-x: -6rem;
  }

  .hd\:hover\:-translate-x-32:hover{
    --transform-translate-x: -8rem;
  }

  .hd\:hover\:-translate-x-36:hover{
    --transform-translate-x: -9rem;
  }

  .hd\:hover\:-translate-x-40:hover{
    --transform-translate-x: -10rem;
  }

  .hd\:hover\:-translate-x-44:hover{
    --transform-translate-x: -11rem;
  }

  .hd\:hover\:-translate-x-48:hover{
    --transform-translate-x: -12rem;
  }

  .hd\:hover\:-translate-x-56:hover{
    --transform-translate-x: -14rem;
  }

  .hd\:hover\:-translate-x-64:hover{
    --transform-translate-x: -16rem;
  }

  .hd\:hover\:-translate-x-px:hover{
    --transform-translate-x: -1px;
  }

  .hd\:hover\:-translate-x-full:hover{
    --transform-translate-x: -100%;
  }

  .hd\:hover\:-translate-x-1\/2:hover{
    --transform-translate-x: -50%;
  }

  .hd\:hover\:translate-x-1\/2:hover{
    --transform-translate-x: 50%;
  }

  .hd\:hover\:translate-x-full:hover{
    --transform-translate-x: 100%;
  }

  .hd\:hover\:translate-y-0:hover{
    --transform-translate-y: 0;
  }

  .hd\:hover\:translate-y-1:hover{
    --transform-translate-y: 0.25rem;
  }

  .hd\:hover\:translate-y-2:hover{
    --transform-translate-y: 0.5rem;
  }

  .hd\:hover\:translate-y-3:hover{
    --transform-translate-y: 0.75rem;
  }

  .hd\:hover\:translate-y-4:hover{
    --transform-translate-y: 1rem;
  }

  .hd\:hover\:translate-y-5:hover{
    --transform-translate-y: 1.25rem;
  }

  .hd\:hover\:translate-y-6:hover{
    --transform-translate-y: 1.5rem;
  }

  .hd\:hover\:translate-y-8:hover{
    --transform-translate-y: 2rem;
  }

  .hd\:hover\:translate-y-10:hover{
    --transform-translate-y: 2.5rem;
  }

  .hd\:hover\:translate-y-12:hover{
    --transform-translate-y: 3rem;
  }

  .hd\:hover\:translate-y-14:hover{
    --transform-translate-y: 3.5rem;
  }

  .hd\:hover\:translate-y-16:hover{
    --transform-translate-y: 4rem;
  }

  .hd\:hover\:translate-y-20:hover{
    --transform-translate-y: 5rem;
  }

  .hd\:hover\:translate-y-24:hover{
    --transform-translate-y: 6rem;
  }

  .hd\:hover\:translate-y-32:hover{
    --transform-translate-y: 8rem;
  }

  .hd\:hover\:translate-y-36:hover{
    --transform-translate-y: 9rem;
  }

  .hd\:hover\:translate-y-40:hover{
    --transform-translate-y: 10rem;
  }

  .hd\:hover\:translate-y-44:hover{
    --transform-translate-y: 11rem;
  }

  .hd\:hover\:translate-y-48:hover{
    --transform-translate-y: 12rem;
  }

  .hd\:hover\:translate-y-56:hover{
    --transform-translate-y: 14rem;
  }

  .hd\:hover\:translate-y-64:hover{
    --transform-translate-y: 16rem;
  }

  .hd\:hover\:translate-y-px:hover{
    --transform-translate-y: 1px;
  }

  .hd\:hover\:-translate-y-1:hover{
    --transform-translate-y: -0.25rem;
  }

  .hd\:hover\:-translate-y-2:hover{
    --transform-translate-y: -0.5rem;
  }

  .hd\:hover\:-translate-y-3:hover{
    --transform-translate-y: -0.75rem;
  }

  .hd\:hover\:-translate-y-4:hover{
    --transform-translate-y: -1rem;
  }

  .hd\:hover\:-translate-y-5:hover{
    --transform-translate-y: -1.25rem;
  }

  .hd\:hover\:-translate-y-6:hover{
    --transform-translate-y: -1.5rem;
  }

  .hd\:hover\:-translate-y-8:hover{
    --transform-translate-y: -2rem;
  }

  .hd\:hover\:-translate-y-10:hover{
    --transform-translate-y: -2.5rem;
  }

  .hd\:hover\:-translate-y-12:hover{
    --transform-translate-y: -3rem;
  }

  .hd\:hover\:-translate-y-14:hover{
    --transform-translate-y: -3.5rem;
  }

  .hd\:hover\:-translate-y-16:hover{
    --transform-translate-y: -4rem;
  }

  .hd\:hover\:-translate-y-20:hover{
    --transform-translate-y: -5rem;
  }

  .hd\:hover\:-translate-y-24:hover{
    --transform-translate-y: -6rem;
  }

  .hd\:hover\:-translate-y-32:hover{
    --transform-translate-y: -8rem;
  }

  .hd\:hover\:-translate-y-36:hover{
    --transform-translate-y: -9rem;
  }

  .hd\:hover\:-translate-y-40:hover{
    --transform-translate-y: -10rem;
  }

  .hd\:hover\:-translate-y-44:hover{
    --transform-translate-y: -11rem;
  }

  .hd\:hover\:-translate-y-48:hover{
    --transform-translate-y: -12rem;
  }

  .hd\:hover\:-translate-y-56:hover{
    --transform-translate-y: -14rem;
  }

  .hd\:hover\:-translate-y-64:hover{
    --transform-translate-y: -16rem;
  }

  .hd\:hover\:-translate-y-px:hover{
    --transform-translate-y: -1px;
  }

  .hd\:hover\:-translate-y-full:hover{
    --transform-translate-y: -100%;
  }

  .hd\:hover\:-translate-y-1\/2:hover{
    --transform-translate-y: -50%;
  }

  .hd\:hover\:translate-y-1\/2:hover{
    --transform-translate-y: 50%;
  }

  .hd\:hover\:translate-y-full:hover{
    --transform-translate-y: 100%;
  }

  .hd\:focus\:translate-x-0:focus{
    --transform-translate-x: 0;
  }

  .hd\:focus\:translate-x-1:focus{
    --transform-translate-x: 0.25rem;
  }

  .hd\:focus\:translate-x-2:focus{
    --transform-translate-x: 0.5rem;
  }

  .hd\:focus\:translate-x-3:focus{
    --transform-translate-x: 0.75rem;
  }

  .hd\:focus\:translate-x-4:focus{
    --transform-translate-x: 1rem;
  }

  .hd\:focus\:translate-x-5:focus{
    --transform-translate-x: 1.25rem;
  }

  .hd\:focus\:translate-x-6:focus{
    --transform-translate-x: 1.5rem;
  }

  .hd\:focus\:translate-x-8:focus{
    --transform-translate-x: 2rem;
  }

  .hd\:focus\:translate-x-10:focus{
    --transform-translate-x: 2.5rem;
  }

  .hd\:focus\:translate-x-12:focus{
    --transform-translate-x: 3rem;
  }

  .hd\:focus\:translate-x-14:focus{
    --transform-translate-x: 3.5rem;
  }

  .hd\:focus\:translate-x-16:focus{
    --transform-translate-x: 4rem;
  }

  .hd\:focus\:translate-x-20:focus{
    --transform-translate-x: 5rem;
  }

  .hd\:focus\:translate-x-24:focus{
    --transform-translate-x: 6rem;
  }

  .hd\:focus\:translate-x-32:focus{
    --transform-translate-x: 8rem;
  }

  .hd\:focus\:translate-x-36:focus{
    --transform-translate-x: 9rem;
  }

  .hd\:focus\:translate-x-40:focus{
    --transform-translate-x: 10rem;
  }

  .hd\:focus\:translate-x-44:focus{
    --transform-translate-x: 11rem;
  }

  .hd\:focus\:translate-x-48:focus{
    --transform-translate-x: 12rem;
  }

  .hd\:focus\:translate-x-56:focus{
    --transform-translate-x: 14rem;
  }

  .hd\:focus\:translate-x-64:focus{
    --transform-translate-x: 16rem;
  }

  .hd\:focus\:translate-x-px:focus{
    --transform-translate-x: 1px;
  }

  .hd\:focus\:-translate-x-1:focus{
    --transform-translate-x: -0.25rem;
  }

  .hd\:focus\:-translate-x-2:focus{
    --transform-translate-x: -0.5rem;
  }

  .hd\:focus\:-translate-x-3:focus{
    --transform-translate-x: -0.75rem;
  }

  .hd\:focus\:-translate-x-4:focus{
    --transform-translate-x: -1rem;
  }

  .hd\:focus\:-translate-x-5:focus{
    --transform-translate-x: -1.25rem;
  }

  .hd\:focus\:-translate-x-6:focus{
    --transform-translate-x: -1.5rem;
  }

  .hd\:focus\:-translate-x-8:focus{
    --transform-translate-x: -2rem;
  }

  .hd\:focus\:-translate-x-10:focus{
    --transform-translate-x: -2.5rem;
  }

  .hd\:focus\:-translate-x-12:focus{
    --transform-translate-x: -3rem;
  }

  .hd\:focus\:-translate-x-14:focus{
    --transform-translate-x: -3.5rem;
  }

  .hd\:focus\:-translate-x-16:focus{
    --transform-translate-x: -4rem;
  }

  .hd\:focus\:-translate-x-20:focus{
    --transform-translate-x: -5rem;
  }

  .hd\:focus\:-translate-x-24:focus{
    --transform-translate-x: -6rem;
  }

  .hd\:focus\:-translate-x-32:focus{
    --transform-translate-x: -8rem;
  }

  .hd\:focus\:-translate-x-36:focus{
    --transform-translate-x: -9rem;
  }

  .hd\:focus\:-translate-x-40:focus{
    --transform-translate-x: -10rem;
  }

  .hd\:focus\:-translate-x-44:focus{
    --transform-translate-x: -11rem;
  }

  .hd\:focus\:-translate-x-48:focus{
    --transform-translate-x: -12rem;
  }

  .hd\:focus\:-translate-x-56:focus{
    --transform-translate-x: -14rem;
  }

  .hd\:focus\:-translate-x-64:focus{
    --transform-translate-x: -16rem;
  }

  .hd\:focus\:-translate-x-px:focus{
    --transform-translate-x: -1px;
  }

  .hd\:focus\:-translate-x-full:focus{
    --transform-translate-x: -100%;
  }

  .hd\:focus\:-translate-x-1\/2:focus{
    --transform-translate-x: -50%;
  }

  .hd\:focus\:translate-x-1\/2:focus{
    --transform-translate-x: 50%;
  }

  .hd\:focus\:translate-x-full:focus{
    --transform-translate-x: 100%;
  }

  .hd\:focus\:translate-y-0:focus{
    --transform-translate-y: 0;
  }

  .hd\:focus\:translate-y-1:focus{
    --transform-translate-y: 0.25rem;
  }

  .hd\:focus\:translate-y-2:focus{
    --transform-translate-y: 0.5rem;
  }

  .hd\:focus\:translate-y-3:focus{
    --transform-translate-y: 0.75rem;
  }

  .hd\:focus\:translate-y-4:focus{
    --transform-translate-y: 1rem;
  }

  .hd\:focus\:translate-y-5:focus{
    --transform-translate-y: 1.25rem;
  }

  .hd\:focus\:translate-y-6:focus{
    --transform-translate-y: 1.5rem;
  }

  .hd\:focus\:translate-y-8:focus{
    --transform-translate-y: 2rem;
  }

  .hd\:focus\:translate-y-10:focus{
    --transform-translate-y: 2.5rem;
  }

  .hd\:focus\:translate-y-12:focus{
    --transform-translate-y: 3rem;
  }

  .hd\:focus\:translate-y-14:focus{
    --transform-translate-y: 3.5rem;
  }

  .hd\:focus\:translate-y-16:focus{
    --transform-translate-y: 4rem;
  }

  .hd\:focus\:translate-y-20:focus{
    --transform-translate-y: 5rem;
  }

  .hd\:focus\:translate-y-24:focus{
    --transform-translate-y: 6rem;
  }

  .hd\:focus\:translate-y-32:focus{
    --transform-translate-y: 8rem;
  }

  .hd\:focus\:translate-y-36:focus{
    --transform-translate-y: 9rem;
  }

  .hd\:focus\:translate-y-40:focus{
    --transform-translate-y: 10rem;
  }

  .hd\:focus\:translate-y-44:focus{
    --transform-translate-y: 11rem;
  }

  .hd\:focus\:translate-y-48:focus{
    --transform-translate-y: 12rem;
  }

  .hd\:focus\:translate-y-56:focus{
    --transform-translate-y: 14rem;
  }

  .hd\:focus\:translate-y-64:focus{
    --transform-translate-y: 16rem;
  }

  .hd\:focus\:translate-y-px:focus{
    --transform-translate-y: 1px;
  }

  .hd\:focus\:-translate-y-1:focus{
    --transform-translate-y: -0.25rem;
  }

  .hd\:focus\:-translate-y-2:focus{
    --transform-translate-y: -0.5rem;
  }

  .hd\:focus\:-translate-y-3:focus{
    --transform-translate-y: -0.75rem;
  }

  .hd\:focus\:-translate-y-4:focus{
    --transform-translate-y: -1rem;
  }

  .hd\:focus\:-translate-y-5:focus{
    --transform-translate-y: -1.25rem;
  }

  .hd\:focus\:-translate-y-6:focus{
    --transform-translate-y: -1.5rem;
  }

  .hd\:focus\:-translate-y-8:focus{
    --transform-translate-y: -2rem;
  }

  .hd\:focus\:-translate-y-10:focus{
    --transform-translate-y: -2.5rem;
  }

  .hd\:focus\:-translate-y-12:focus{
    --transform-translate-y: -3rem;
  }

  .hd\:focus\:-translate-y-14:focus{
    --transform-translate-y: -3.5rem;
  }

  .hd\:focus\:-translate-y-16:focus{
    --transform-translate-y: -4rem;
  }

  .hd\:focus\:-translate-y-20:focus{
    --transform-translate-y: -5rem;
  }

  .hd\:focus\:-translate-y-24:focus{
    --transform-translate-y: -6rem;
  }

  .hd\:focus\:-translate-y-32:focus{
    --transform-translate-y: -8rem;
  }

  .hd\:focus\:-translate-y-36:focus{
    --transform-translate-y: -9rem;
  }

  .hd\:focus\:-translate-y-40:focus{
    --transform-translate-y: -10rem;
  }

  .hd\:focus\:-translate-y-44:focus{
    --transform-translate-y: -11rem;
  }

  .hd\:focus\:-translate-y-48:focus{
    --transform-translate-y: -12rem;
  }

  .hd\:focus\:-translate-y-56:focus{
    --transform-translate-y: -14rem;
  }

  .hd\:focus\:-translate-y-64:focus{
    --transform-translate-y: -16rem;
  }

  .hd\:focus\:-translate-y-px:focus{
    --transform-translate-y: -1px;
  }

  .hd\:focus\:-translate-y-full:focus{
    --transform-translate-y: -100%;
  }

  .hd\:focus\:-translate-y-1\/2:focus{
    --transform-translate-y: -50%;
  }

  .hd\:focus\:translate-y-1\/2:focus{
    --transform-translate-y: 50%;
  }

  .hd\:focus\:translate-y-full:focus{
    --transform-translate-y: 100%;
  }

  .hd\:skew-x-0{
    --transform-skew-x: 0;
  }

  .hd\:skew-x-1{
    --transform-skew-x: 1deg;
  }

  .hd\:skew-x-2{
    --transform-skew-x: 2deg;
  }

  .hd\:skew-x-3{
    --transform-skew-x: 3deg;
  }

  .hd\:skew-x-6{
    --transform-skew-x: 6deg;
  }

  .hd\:skew-x-12{
    --transform-skew-x: 12deg;
  }

  .hd\:-skew-x-12{
    --transform-skew-x: -12deg;
  }

  .hd\:-skew-x-6{
    --transform-skew-x: -6deg;
  }

  .hd\:-skew-x-3{
    --transform-skew-x: -3deg;
  }

  .hd\:-skew-x-2{
    --transform-skew-x: -2deg;
  }

  .hd\:-skew-x-1{
    --transform-skew-x: -1deg;
  }

  .hd\:skew-y-0{
    --transform-skew-y: 0;
  }

  .hd\:skew-y-1{
    --transform-skew-y: 1deg;
  }

  .hd\:skew-y-2{
    --transform-skew-y: 2deg;
  }

  .hd\:skew-y-3{
    --transform-skew-y: 3deg;
  }

  .hd\:skew-y-6{
    --transform-skew-y: 6deg;
  }

  .hd\:skew-y-12{
    --transform-skew-y: 12deg;
  }

  .hd\:-skew-y-12{
    --transform-skew-y: -12deg;
  }

  .hd\:-skew-y-6{
    --transform-skew-y: -6deg;
  }

  .hd\:-skew-y-3{
    --transform-skew-y: -3deg;
  }

  .hd\:-skew-y-2{
    --transform-skew-y: -2deg;
  }

  .hd\:-skew-y-1{
    --transform-skew-y: -1deg;
  }

  .hd\:hover\:skew-x-0:hover{
    --transform-skew-x: 0;
  }

  .hd\:hover\:skew-x-1:hover{
    --transform-skew-x: 1deg;
  }

  .hd\:hover\:skew-x-2:hover{
    --transform-skew-x: 2deg;
  }

  .hd\:hover\:skew-x-3:hover{
    --transform-skew-x: 3deg;
  }

  .hd\:hover\:skew-x-6:hover{
    --transform-skew-x: 6deg;
  }

  .hd\:hover\:skew-x-12:hover{
    --transform-skew-x: 12deg;
  }

  .hd\:hover\:-skew-x-12:hover{
    --transform-skew-x: -12deg;
  }

  .hd\:hover\:-skew-x-6:hover{
    --transform-skew-x: -6deg;
  }

  .hd\:hover\:-skew-x-3:hover{
    --transform-skew-x: -3deg;
  }

  .hd\:hover\:-skew-x-2:hover{
    --transform-skew-x: -2deg;
  }

  .hd\:hover\:-skew-x-1:hover{
    --transform-skew-x: -1deg;
  }

  .hd\:hover\:skew-y-0:hover{
    --transform-skew-y: 0;
  }

  .hd\:hover\:skew-y-1:hover{
    --transform-skew-y: 1deg;
  }

  .hd\:hover\:skew-y-2:hover{
    --transform-skew-y: 2deg;
  }

  .hd\:hover\:skew-y-3:hover{
    --transform-skew-y: 3deg;
  }

  .hd\:hover\:skew-y-6:hover{
    --transform-skew-y: 6deg;
  }

  .hd\:hover\:skew-y-12:hover{
    --transform-skew-y: 12deg;
  }

  .hd\:hover\:-skew-y-12:hover{
    --transform-skew-y: -12deg;
  }

  .hd\:hover\:-skew-y-6:hover{
    --transform-skew-y: -6deg;
  }

  .hd\:hover\:-skew-y-3:hover{
    --transform-skew-y: -3deg;
  }

  .hd\:hover\:-skew-y-2:hover{
    --transform-skew-y: -2deg;
  }

  .hd\:hover\:-skew-y-1:hover{
    --transform-skew-y: -1deg;
  }

  .hd\:focus\:skew-x-0:focus{
    --transform-skew-x: 0;
  }

  .hd\:focus\:skew-x-1:focus{
    --transform-skew-x: 1deg;
  }

  .hd\:focus\:skew-x-2:focus{
    --transform-skew-x: 2deg;
  }

  .hd\:focus\:skew-x-3:focus{
    --transform-skew-x: 3deg;
  }

  .hd\:focus\:skew-x-6:focus{
    --transform-skew-x: 6deg;
  }

  .hd\:focus\:skew-x-12:focus{
    --transform-skew-x: 12deg;
  }

  .hd\:focus\:-skew-x-12:focus{
    --transform-skew-x: -12deg;
  }

  .hd\:focus\:-skew-x-6:focus{
    --transform-skew-x: -6deg;
  }

  .hd\:focus\:-skew-x-3:focus{
    --transform-skew-x: -3deg;
  }

  .hd\:focus\:-skew-x-2:focus{
    --transform-skew-x: -2deg;
  }

  .hd\:focus\:-skew-x-1:focus{
    --transform-skew-x: -1deg;
  }

  .hd\:focus\:skew-y-0:focus{
    --transform-skew-y: 0;
  }

  .hd\:focus\:skew-y-1:focus{
    --transform-skew-y: 1deg;
  }

  .hd\:focus\:skew-y-2:focus{
    --transform-skew-y: 2deg;
  }

  .hd\:focus\:skew-y-3:focus{
    --transform-skew-y: 3deg;
  }

  .hd\:focus\:skew-y-6:focus{
    --transform-skew-y: 6deg;
  }

  .hd\:focus\:skew-y-12:focus{
    --transform-skew-y: 12deg;
  }

  .hd\:focus\:-skew-y-12:focus{
    --transform-skew-y: -12deg;
  }

  .hd\:focus\:-skew-y-6:focus{
    --transform-skew-y: -6deg;
  }

  .hd\:focus\:-skew-y-3:focus{
    --transform-skew-y: -3deg;
  }

  .hd\:focus\:-skew-y-2:focus{
    --transform-skew-y: -2deg;
  }

  .hd\:focus\:-skew-y-1:focus{
    --transform-skew-y: -1deg;
  }

  .hd\:transition-none{
    -webkit-transition-property: none;
    transition-property: none;
  }

  .hd\:transition-all{
    -webkit-transition-property: all;
    transition-property: all;
  }

  .hd\:transition{
    -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  }

  .hd\:transition-colors{
    -webkit-transition-property: background-color, border-color, color, fill, stroke;
    transition-property: background-color, border-color, color, fill, stroke;
  }

  .hd\:transition-opacity{
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }

  .hd\:transition-shadow{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
  }

  .hd\:transition-transform{
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }

  .hd\:ease-linear{
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }

  .hd\:ease-in{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .hd\:ease-out{
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .hd\:ease-in-out{
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hd\:duration-75{
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
  }

  .hd\:duration-100{
    -webkit-transition-duration: 100ms;
            transition-duration: 100ms;
  }

  .hd\:duration-150{
    -webkit-transition-duration: 150ms;
            transition-duration: 150ms;
  }

  .hd\:duration-200{
    -webkit-transition-duration: 200ms;
            transition-duration: 200ms;
  }

  .hd\:duration-300{
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
  }

  .hd\:duration-500{
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
  }

  .hd\:duration-700{
    -webkit-transition-duration: 700ms;
            transition-duration: 700ms;
  }

  .hd\:duration-1000{
    -webkit-transition-duration: 1000ms;
            transition-duration: 1000ms;
  }

  .hd\:delay-75{
    -webkit-transition-delay: 75ms;
            transition-delay: 75ms;
  }

  .hd\:delay-100{
    -webkit-transition-delay: 100ms;
            transition-delay: 100ms;
  }

  .hd\:delay-150{
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }

  .hd\:delay-200{
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }

  .hd\:delay-300{
    -webkit-transition-delay: 300ms;
            transition-delay: 300ms;
  }

  .hd\:delay-500{
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }

  .hd\:delay-700{
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }

  .hd\:delay-1000{
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
  }

  .hd\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .hd\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .hd\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .hd\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .hd\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .hd\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:bg-border-10:hover{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:bg-form-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:bg-form-active-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:bg-black-10:hover{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:bg-grey-darkest-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:bg-grey-darker-10:hover{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:bg-grey-dark-10:hover{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:bg-grey-10:hover{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:bg-grey-light-10:hover{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:bg-grey-lighter-10:hover{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:bg-grey-lightest-10:hover{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:bg-white-10:hover{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:bg-red-10:hover{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:bg-green-10:hover{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:bg-blue-10:hover{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:bg-orange-10:hover{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:bg-primary-darkest-10:hover{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:bg-primary-darker-10:hover{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:bg-primary-dark-10:hover{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:bg-primary-10:hover{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:bg-primary-light-10:hover{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:bg-primary-lighter-10:hover{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:bg-primary-lightest-10:hover{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:bg-secondary-darkest-10:hover{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:bg-secondary-darker-10:hover{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:bg-secondary-dark-10:hover{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:bg-secondary-10:hover{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:bg-secondary-light-10:hover{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:bg-secondary-lighter-10:hover{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:bg-secondary-lightest-10:hover{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:bg-tertiary-darkest-10:hover{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:bg-tertiary-darker-10:hover{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:bg-tertiary-dark-10:hover{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:bg-tertiary-10:hover{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:bg-tertiary-light-10:hover{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:bg-tertiary-lighter-10:hover{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:bg-tertiary-lightest-10:hover{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:bg-border-10:focus{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:bg-form-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:bg-form-active-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:bg-black-10:focus{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:bg-grey-darkest-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:bg-grey-darker-10:focus{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:bg-grey-dark-10:focus{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:bg-grey-10:focus{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:bg-grey-light-10:focus{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:bg-grey-lighter-10:focus{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:bg-grey-lightest-10:focus{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:bg-white-10:focus{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:bg-red-10:focus{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:bg-green-10:focus{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:bg-blue-10:focus{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:bg-orange-10:focus{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:bg-primary-darkest-10:focus{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:bg-primary-darker-10:focus{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:bg-primary-dark-10:focus{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:bg-primary-10:focus{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:bg-primary-light-10:focus{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:bg-primary-lighter-10:focus{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:bg-primary-lightest-10:focus{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:bg-secondary-darkest-10:focus{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:bg-secondary-darker-10:focus{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:bg-secondary-dark-10:focus{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:bg-secondary-10:focus{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:bg-secondary-light-10:focus{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:bg-secondary-lighter-10:focus{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:bg-secondary-lightest-10:focus{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:bg-tertiary-darkest-10:focus{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:bg-tertiary-darker-10:focus{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:bg-tertiary-dark-10:focus{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:bg-tertiary-10:focus{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:bg-tertiary-light-10:focus{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:bg-tertiary-lighter-10:focus{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:bg-tertiary-lightest-10:focus{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-border-10{
    background-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-form-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-form-active-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-black-10{
    background-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-10{
    background-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-10{
    background-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-10{
    background-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-10{
    background-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-10{
    background-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-10{
    background-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-white-10{
    background-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-red-10{
    background-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-green-10{
    background-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-blue-10{
    background-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-orange-10{
    background-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-10{
    background-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-10{
    background-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-10{
    background-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-10{
    background-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-10{
    background-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-10{
    background-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-10{
    background-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-10{
    background-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-10{
    background-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-10{
    background-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-10{
    background-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-10{
    background-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-10{
    background-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-10{
    background-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-10{
    background-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-10{
    background-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-10{
    background-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-10{
    background-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-10{
    background-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-10{
    background-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-10{
    background-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-border-10:hover{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:border-t-border-10:hover{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:border-r-border-10:hover{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:border-b-border-10:hover{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:border-l-border-10:hover{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:border-form-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-t-form-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-r-form-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-b-form-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-l-form-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-form-active-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-t-form-active-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-r-form-active-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-b-form-active-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-l-form-active-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-black-10:hover{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:border-t-black-10:hover{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:border-r-black-10:hover{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:border-b-black-10:hover{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:border-l-black-10:hover{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:border-grey-darkest-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-t-grey-darkest-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-r-grey-darkest-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-b-grey-darkest-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-l-grey-darkest-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-grey-darker-10:hover{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-t-grey-darker-10:hover{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-r-grey-darker-10:hover{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-b-grey-darker-10:hover{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-l-grey-darker-10:hover{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:border-grey-dark-10:hover{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-t-grey-dark-10:hover{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-r-grey-dark-10:hover{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-b-grey-dark-10:hover{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-l-grey-dark-10:hover{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:border-grey-10:hover{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-t-grey-10:hover{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-r-grey-10:hover{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-b-grey-10:hover{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-l-grey-10:hover{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:border-grey-light-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-t-grey-light-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-r-grey-light-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-b-grey-light-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-l-grey-light-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-grey-lighter-10:hover{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:border-t-grey-lighter-10:hover{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:border-r-grey-lighter-10:hover{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:border-b-grey-lighter-10:hover{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:border-l-grey-lighter-10:hover{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:border-grey-lightest-10:hover{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:border-t-grey-lightest-10:hover{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:border-r-grey-lightest-10:hover{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:border-b-grey-lightest-10:hover{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:border-l-grey-lightest-10:hover{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:border-white-10:hover{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:border-t-white-10:hover{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:border-r-white-10:hover{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:border-b-white-10:hover{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:border-l-white-10:hover{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:border-red-10:hover{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:border-t-red-10:hover{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:border-r-red-10:hover{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:border-b-red-10:hover{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:border-l-red-10:hover{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:border-green-10:hover{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:border-t-green-10:hover{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:border-r-green-10:hover{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:border-b-green-10:hover{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:border-l-green-10:hover{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:border-blue-10:hover{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:border-t-blue-10:hover{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:border-r-blue-10:hover{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:border-b-blue-10:hover{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:border-l-blue-10:hover{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:border-orange-10:hover{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:border-t-orange-10:hover{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:border-r-orange-10:hover{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:border-b-orange-10:hover{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:border-l-orange-10:hover{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:border-primary-darkest-10:hover{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:border-t-primary-darkest-10:hover{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:border-r-primary-darkest-10:hover{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:border-b-primary-darkest-10:hover{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:border-l-primary-darkest-10:hover{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:border-primary-darker-10:hover{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:border-t-primary-darker-10:hover{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:border-r-primary-darker-10:hover{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:border-b-primary-darker-10:hover{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:border-l-primary-darker-10:hover{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:border-primary-dark-10:hover{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:border-t-primary-dark-10:hover{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:border-r-primary-dark-10:hover{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:border-b-primary-dark-10:hover{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:border-l-primary-dark-10:hover{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:border-primary-10:hover{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:border-t-primary-10:hover{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:border-r-primary-10:hover{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:border-b-primary-10:hover{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:border-l-primary-10:hover{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:border-primary-light-10:hover{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:border-t-primary-light-10:hover{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:border-r-primary-light-10:hover{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:border-b-primary-light-10:hover{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:border-l-primary-light-10:hover{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:border-primary-lighter-10:hover{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:border-t-primary-lighter-10:hover{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:border-r-primary-lighter-10:hover{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:border-b-primary-lighter-10:hover{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:border-l-primary-lighter-10:hover{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:border-primary-lightest-10:hover{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:border-t-primary-lightest-10:hover{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:border-r-primary-lightest-10:hover{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:border-b-primary-lightest-10:hover{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:border-l-primary-lightest-10:hover{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:border-secondary-darkest-10:hover{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:border-t-secondary-darkest-10:hover{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:border-r-secondary-darkest-10:hover{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:border-b-secondary-darkest-10:hover{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:border-l-secondary-darkest-10:hover{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:border-secondary-darker-10:hover{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:border-t-secondary-darker-10:hover{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:border-r-secondary-darker-10:hover{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:border-b-secondary-darker-10:hover{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:border-l-secondary-darker-10:hover{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:border-secondary-dark-10:hover{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:border-t-secondary-dark-10:hover{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:border-r-secondary-dark-10:hover{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:border-b-secondary-dark-10:hover{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:border-l-secondary-dark-10:hover{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:border-secondary-10:hover{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:border-t-secondary-10:hover{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:border-r-secondary-10:hover{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:border-b-secondary-10:hover{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:border-l-secondary-10:hover{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:border-secondary-light-10:hover{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:border-t-secondary-light-10:hover{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:border-r-secondary-light-10:hover{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:border-b-secondary-light-10:hover{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:border-l-secondary-light-10:hover{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:border-secondary-lighter-10:hover{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:border-t-secondary-lighter-10:hover{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:border-r-secondary-lighter-10:hover{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:border-b-secondary-lighter-10:hover{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:border-l-secondary-lighter-10:hover{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:border-secondary-lightest-10:hover{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:border-t-secondary-lightest-10:hover{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:border-r-secondary-lightest-10:hover{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:border-b-secondary-lightest-10:hover{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:border-l-secondary-lightest-10:hover{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:border-tertiary-darkest-10:hover{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:border-t-tertiary-darkest-10:hover{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:border-r-tertiary-darkest-10:hover{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:border-b-tertiary-darkest-10:hover{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:border-l-tertiary-darkest-10:hover{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:border-tertiary-darker-10:hover{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:border-t-tertiary-darker-10:hover{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:border-r-tertiary-darker-10:hover{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:border-b-tertiary-darker-10:hover{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:border-l-tertiary-darker-10:hover{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:border-tertiary-dark-10:hover{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:border-t-tertiary-dark-10:hover{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:border-r-tertiary-dark-10:hover{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:border-b-tertiary-dark-10:hover{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:border-l-tertiary-dark-10:hover{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:border-tertiary-10:hover{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:border-t-tertiary-10:hover{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:border-r-tertiary-10:hover{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:border-b-tertiary-10:hover{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:border-l-tertiary-10:hover{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:border-tertiary-light-10:hover{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:border-t-tertiary-light-10:hover{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:border-r-tertiary-light-10:hover{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:border-b-tertiary-light-10:hover{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:border-l-tertiary-light-10:hover{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:border-tertiary-lighter-10:hover{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:border-t-tertiary-lighter-10:hover{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:border-r-tertiary-lighter-10:hover{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:border-b-tertiary-lighter-10:hover{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:border-l-tertiary-lighter-10:hover{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:border-tertiary-lightest-10:hover{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:border-t-tertiary-lightest-10:hover{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:border-r-tertiary-lightest-10:hover{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:border-b-tertiary-lightest-10:hover{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:border-l-tertiary-lightest-10:hover{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:border-default-10:hover{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-t-default-10:hover{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-r-default-10:hover{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-b-default-10:hover{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:border-l-default-10:hover{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-border-10:focus{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-t-border-10:focus{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-r-border-10:focus{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-b-border-10:focus{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-l-border-10:focus{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:border-form-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-t-form-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-r-form-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-b-form-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-l-form-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-form-active-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-t-form-active-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-r-form-active-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-b-form-active-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-l-form-active-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-black-10:focus{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-t-black-10:focus{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-r-black-10:focus{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-b-black-10:focus{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-l-black-10:focus{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:border-grey-darkest-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-t-grey-darkest-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-r-grey-darkest-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-b-grey-darkest-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-l-grey-darkest-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-grey-darker-10:focus{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-t-grey-darker-10:focus{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-r-grey-darker-10:focus{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-b-grey-darker-10:focus{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-l-grey-darker-10:focus{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:border-grey-dark-10:focus{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-t-grey-dark-10:focus{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-r-grey-dark-10:focus{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-b-grey-dark-10:focus{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-l-grey-dark-10:focus{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:border-grey-10:focus{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-t-grey-10:focus{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-r-grey-10:focus{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-b-grey-10:focus{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-l-grey-10:focus{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:border-grey-light-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-t-grey-light-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-r-grey-light-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-b-grey-light-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-l-grey-light-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-grey-lighter-10:focus{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-t-grey-lighter-10:focus{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-r-grey-lighter-10:focus{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-b-grey-lighter-10:focus{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-l-grey-lighter-10:focus{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:border-grey-lightest-10:focus{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-t-grey-lightest-10:focus{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-r-grey-lightest-10:focus{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-b-grey-lightest-10:focus{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-l-grey-lightest-10:focus{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:border-white-10:focus{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-t-white-10:focus{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-r-white-10:focus{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-b-white-10:focus{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-l-white-10:focus{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:border-red-10:focus{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-t-red-10:focus{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-r-red-10:focus{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-b-red-10:focus{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-l-red-10:focus{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:border-green-10:focus{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-t-green-10:focus{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-r-green-10:focus{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-b-green-10:focus{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-l-green-10:focus{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:border-blue-10:focus{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-t-blue-10:focus{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-r-blue-10:focus{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-b-blue-10:focus{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-l-blue-10:focus{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:border-orange-10:focus{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-t-orange-10:focus{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-r-orange-10:focus{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-b-orange-10:focus{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-l-orange-10:focus{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:border-primary-darkest-10:focus{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-t-primary-darkest-10:focus{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-r-primary-darkest-10:focus{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-b-primary-darkest-10:focus{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-l-primary-darkest-10:focus{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:border-primary-darker-10:focus{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-t-primary-darker-10:focus{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-r-primary-darker-10:focus{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-b-primary-darker-10:focus{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-l-primary-darker-10:focus{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:border-primary-dark-10:focus{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-t-primary-dark-10:focus{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-r-primary-dark-10:focus{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-b-primary-dark-10:focus{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-l-primary-dark-10:focus{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:border-primary-10:focus{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-t-primary-10:focus{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-r-primary-10:focus{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-b-primary-10:focus{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-l-primary-10:focus{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:border-primary-light-10:focus{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-t-primary-light-10:focus{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-r-primary-light-10:focus{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-b-primary-light-10:focus{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-l-primary-light-10:focus{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:border-primary-lighter-10:focus{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-t-primary-lighter-10:focus{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-r-primary-lighter-10:focus{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-b-primary-lighter-10:focus{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-l-primary-lighter-10:focus{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:border-primary-lightest-10:focus{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-t-primary-lightest-10:focus{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-r-primary-lightest-10:focus{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-b-primary-lightest-10:focus{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-l-primary-lightest-10:focus{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:border-secondary-darkest-10:focus{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-t-secondary-darkest-10:focus{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-r-secondary-darkest-10:focus{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-b-secondary-darkest-10:focus{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-l-secondary-darkest-10:focus{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:border-secondary-darker-10:focus{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-t-secondary-darker-10:focus{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-r-secondary-darker-10:focus{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-b-secondary-darker-10:focus{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-l-secondary-darker-10:focus{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:border-secondary-dark-10:focus{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-t-secondary-dark-10:focus{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-r-secondary-dark-10:focus{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-b-secondary-dark-10:focus{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-l-secondary-dark-10:focus{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:border-secondary-10:focus{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-t-secondary-10:focus{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-r-secondary-10:focus{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-b-secondary-10:focus{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-l-secondary-10:focus{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:border-secondary-light-10:focus{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-t-secondary-light-10:focus{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-r-secondary-light-10:focus{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-b-secondary-light-10:focus{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-l-secondary-light-10:focus{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:border-secondary-lighter-10:focus{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-t-secondary-lighter-10:focus{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-r-secondary-lighter-10:focus{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-b-secondary-lighter-10:focus{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-l-secondary-lighter-10:focus{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:border-secondary-lightest-10:focus{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-t-secondary-lightest-10:focus{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-r-secondary-lightest-10:focus{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-b-secondary-lightest-10:focus{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-l-secondary-lightest-10:focus{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:border-tertiary-darkest-10:focus{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-t-tertiary-darkest-10:focus{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-r-tertiary-darkest-10:focus{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-b-tertiary-darkest-10:focus{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-l-tertiary-darkest-10:focus{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:border-tertiary-darker-10:focus{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-t-tertiary-darker-10:focus{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-r-tertiary-darker-10:focus{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-b-tertiary-darker-10:focus{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-l-tertiary-darker-10:focus{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:border-tertiary-dark-10:focus{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-t-tertiary-dark-10:focus{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-r-tertiary-dark-10:focus{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-b-tertiary-dark-10:focus{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-l-tertiary-dark-10:focus{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:border-tertiary-10:focus{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-t-tertiary-10:focus{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-r-tertiary-10:focus{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-b-tertiary-10:focus{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-l-tertiary-10:focus{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:border-tertiary-light-10:focus{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-t-tertiary-light-10:focus{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-r-tertiary-light-10:focus{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-b-tertiary-light-10:focus{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-l-tertiary-light-10:focus{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:border-tertiary-lighter-10:focus{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-t-tertiary-lighter-10:focus{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-r-tertiary-lighter-10:focus{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-b-tertiary-lighter-10:focus{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-l-tertiary-lighter-10:focus{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:border-tertiary-lightest-10:focus{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-t-tertiary-lightest-10:focus{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-r-tertiary-lightest-10:focus{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-b-tertiary-lightest-10:focus{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-l-tertiary-lightest-10:focus{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:border-default-10:focus{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-t-default-10:focus{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-r-default-10:focus{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-b-default-10:focus{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:border-l-default-10:focus{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-border-10{
    border-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-border-10{
    border-top-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-border-10{
    border-right-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-border-10{
    border-bottom-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-border-10{
    border-left-color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:border-form-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-form-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-form-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-form-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-form-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-form-active-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-black-10{
    border-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-black-10{
    border-top-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-black-10{
    border-right-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-black-10{
    border-bottom-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-black-10{
    border-left-color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-10{
    border-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-10{
    border-top-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-10{
    border-right-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-10{
    border-bottom-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-10{
    border-left-color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-10{
    border-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-10{
    border-top-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-10{
    border-right-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-10{
    border-bottom-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-10{
    border-left-color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-10{
    border-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-10{
    border-top-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-10{
    border-right-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-10{
    border-bottom-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-10{
    border-left-color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-light-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-10{
    border-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-10{
    border-top-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-10{
    border-right-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-10{
    border-bottom-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-10{
    border-left-color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-10{
    border-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-10{
    border-top-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-10{
    border-right-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-10{
    border-bottom-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-10{
    border-left-color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:border-white-10{
    border-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-white-10{
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-white-10{
    border-right-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-white-10{
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-white-10{
    border-left-color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:border-red-10{
    border-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-red-10{
    border-top-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-red-10{
    border-right-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-red-10{
    border-bottom-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-red-10{
    border-left-color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-green-10{
    border-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-green-10{
    border-top-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-green-10{
    border-right-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-green-10{
    border-bottom-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-green-10{
    border-left-color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:border-blue-10{
    border-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-blue-10{
    border-top-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-blue-10{
    border-right-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-blue-10{
    border-bottom-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-blue-10{
    border-left-color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:border-orange-10{
    border-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-orange-10{
    border-top-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-orange-10{
    border-right-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-orange-10{
    border-bottom-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-orange-10{
    border-left-color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-10{
    border-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-10{
    border-top-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-10{
    border-right-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-10{
    border-bottom-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-10{
    border-left-color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-10{
    border-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-10{
    border-top-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-10{
    border-right-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-10{
    border-bottom-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-10{
    border-left-color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-10{
    border-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-10{
    border-top-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-10{
    border-right-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-10{
    border-bottom-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-10{
    border-left-color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-10{
    border-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-10{
    border-top-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-10{
    border-right-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-10{
    border-bottom-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-10{
    border-left-color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-light-10{
    border-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-10{
    border-top-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-10{
    border-right-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-10{
    border-bottom-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-10{
    border-left-color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-10{
    border-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-10{
    border-top-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-10{
    border-right-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-10{
    border-bottom-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-10{
    border-left-color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-10{
    border-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-10{
    border-top-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-10{
    border-right-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-10{
    border-bottom-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-10{
    border-left-color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-10{
    border-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-10{
    border-top-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-10{
    border-right-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-10{
    border-bottom-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-10{
    border-left-color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-10{
    border-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-10{
    border-top-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-10{
    border-right-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-10{
    border-bottom-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-10{
    border-left-color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-10{
    border-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-10{
    border-top-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-10{
    border-right-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-10{
    border-bottom-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-10{
    border-left-color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-10{
    border-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-10{
    border-top-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-10{
    border-right-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-10{
    border-bottom-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-10{
    border-left-color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-10{
    border-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-10{
    border-top-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-10{
    border-right-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-10{
    border-bottom-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-10{
    border-left-color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-10{
    border-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-10{
    border-top-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-10{
    border-right-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-10{
    border-bottom-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-10{
    border-left-color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-10{
    border-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-10{
    border-top-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-10{
    border-right-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-10{
    border-bottom-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-10{
    border-left-color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-10{
    border-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-10{
    border-top-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-10{
    border-right-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-10{
    border-bottom-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-10{
    border-left-color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-10{
    border-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-10{
    border-top-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-10{
    border-right-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-10{
    border-bottom-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-10{
    border-left-color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-10{
    border-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-10{
    border-top-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-10{
    border-right-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-10{
    border-bottom-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-10{
    border-left-color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-10{
    border-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-10{
    border-top-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-10{
    border-right-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-10{
    border-bottom-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-10{
    border-left-color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-10{
    border-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-10{
    border-top-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-10{
    border-right-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-10{
    border-bottom-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-10{
    border-left-color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-10{
    border-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-10{
    border-top-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-10{
    border-right-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-10{
    border-bottom-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-10{
    border-left-color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-10{
    border-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-10{
    border-top-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-10{
    border-right-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-10{
    border-bottom-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-10{
    border-left-color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:border-default-10{
    border-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-t-default-10{
    border-top-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-r-default-10{
    border-right-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-b-default-10{
    border-bottom-color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:border-l-default-10{
    border-left-color: rgba(179, 188, 197, 0.1);
  }

  .hd\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .hd\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .hd\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .hd\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .hd\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .hd\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .hd\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .hd\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .hd\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .hd\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .hd\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .hd\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .hd\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .hd\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .hd\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .hd\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .hd\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .hd\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .hd\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .hd\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .hd\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .hd\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .hd\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .hd\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .hd\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .hd\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .hd\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .hd\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .hd\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .hd\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .hd\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .hd\:hover\:text-border-10:hover{
    color: rgba(230, 235, 245, 0.1);
  }

  .hd\:hover\:text-form-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:text-form-active-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:text-black-10:hover{
    color: rgba(33, 37, 41, 0.1);
  }

  .hd\:hover\:text-grey-darkest-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:text-grey-darker-10:hover{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:hover\:text-grey-dark-10:hover{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:hover\:text-grey-10:hover{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:hover\:text-grey-light-10:hover{
    color: rgba(179, 188, 197, 0.1);
  }

  .hd\:hover\:text-grey-lighter-10:hover{
    color: rgba(222, 228, 233, 0.1);
  }

  .hd\:hover\:text-grey-lightest-10:hover{
    color: rgba(244, 246, 249, 0.1);
  }

  .hd\:hover\:text-white-10:hover{
    color: rgba(255, 255, 255, 0.1);
  }

  .hd\:hover\:text-red-10:hover{
    color: rgba(211, 26, 8, 0.1);
  }

  .hd\:hover\:text-green-10:hover{
    color: rgba(102, 187, 8, 0.1);
  }

  .hd\:hover\:text-blue-10:hover{
    color: rgba(31, 168, 226, 0.1);
  }

  .hd\:hover\:text-orange-10:hover{
    color: rgba(247, 148, 14, 0.1);
  }

  .hd\:hover\:text-primary-darkest-10:hover{
    color: rgba(83, 15, 18, 0.1);
  }

  .hd\:hover\:text-primary-darker-10:hover{
    color: rgba(124, 23, 27, 0.1);
  }

  .hd\:hover\:text-primary-dark-10:hover{
    color: rgba(166, 30, 36, 0.1);
  }

  .hd\:hover\:text-primary-10:hover{
    color: rgba(207, 38, 45, 0.1);
  }

  .hd\:hover\:text-primary-light-10:hover{
    color: rgba(217, 81, 87, 0.1);
  }

  .hd\:hover\:text-primary-lighter-10:hover{
    color: rgba(226, 125, 129, 0.1);
  }

  .hd\:hover\:text-primary-lightest-10:hover{
    color: rgba(236, 168, 171, 0.1);
  }

  .hd\:hover\:text-secondary-darkest-10:hover{
    color: rgba(62, 69, 37, 0.1);
  }

  .hd\:hover\:text-secondary-darker-10:hover{
    color: rgba(94, 104, 55, 0.1);
  }

  .hd\:hover\:text-secondary-dark-10:hover{
    color: rgba(125, 138, 74, 0.1);
  }

  .hd\:hover\:text-secondary-10:hover{
    color: rgba(156, 173, 92, 0.1);
  }

  .hd\:hover\:text-secondary-light-10:hover{
    color: rgba(176, 189, 125, 0.1);
  }

  .hd\:hover\:text-secondary-lighter-10:hover{
    color: rgba(196, 206, 157, 0.1);
  }

  .hd\:hover\:text-secondary-lightest-10:hover{
    color: rgba(215, 222, 190, 0.1);
  }

  .hd\:hover\:text-tertiary-darkest-10:hover{
    color: rgba(15, 47, 33, 0.1);
  }

  .hd\:hover\:text-tertiary-darker-10:hover{
    color: rgba(26, 71, 49, 0.1);
  }

  .hd\:hover\:text-tertiary-dark-10:hover{
    color: rgba(31, 157, 85, 0.1);
  }

  .hd\:hover\:text-tertiary-10:hover{
    color: rgba(255, 197, 0, 0.1);
  }

  .hd\:hover\:text-tertiary-light-10:hover{
    color: rgba(81, 216, 138, 0.1);
  }

  .hd\:hover\:text-tertiary-lighter-10:hover{
    color: rgba(162, 245, 191, 0.1);
  }

  .hd\:hover\:text-tertiary-lightest-10:hover{
    color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .hd\:focus\:text-border-10:focus{
    color: rgba(230, 235, 245, 0.1);
  }

  .hd\:focus\:text-form-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:text-form-active-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:text-black-10:focus{
    color: rgba(33, 37, 41, 0.1);
  }

  .hd\:focus\:text-grey-darkest-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:text-grey-darker-10:focus{
    color: rgba(154, 165, 192, 0.1);
  }

  .hd\:focus\:text-grey-dark-10:focus{
    color: rgba(66, 80, 92, 0.1);
  }

  .hd\:focus\:text-grey-10:focus{
    color: rgba(121, 130, 139, 0.1);
  }

  .hd\:focus\:text-grey-light-10:focus{
    color: rgba(179, 188, 197, 0.1);
  }

  .hd\:focus\:text-grey-lighter-10:focus{
    color: rgba(222, 228, 233, 0.1);
  }

  .hd\:focus\:text-grey-lightest-10:focus{
    color: rgba(244, 246, 249, 0.1);
  }

  .hd\:focus\:text-white-10:focus{
    color: rgba(255, 255, 255, 0.1);
  }

  .hd\:focus\:text-red-10:focus{
    color: rgba(211, 26, 8, 0.1);
  }

  .hd\:focus\:text-green-10:focus{
    color: rgba(102, 187, 8, 0.1);
  }

  .hd\:focus\:text-blue-10:focus{
    color: rgba(31, 168, 226, 0.1);
  }

  .hd\:focus\:text-orange-10:focus{
    color: rgba(247, 148, 14, 0.1);
  }

  .hd\:focus\:text-primary-darkest-10:focus{
    color: rgba(83, 15, 18, 0.1);
  }

  .hd\:focus\:text-primary-darker-10:focus{
    color: rgba(124, 23, 27, 0.1);
  }

  .hd\:focus\:text-primary-dark-10:focus{
    color: rgba(166, 30, 36, 0.1);
  }

  .hd\:focus\:text-primary-10:focus{
    color: rgba(207, 38, 45, 0.1);
  }

  .hd\:focus\:text-primary-light-10:focus{
    color: rgba(217, 81, 87, 0.1);
  }

  .hd\:focus\:text-primary-lighter-10:focus{
    color: rgba(226, 125, 129, 0.1);
  }

  .hd\:focus\:text-primary-lightest-10:focus{
    color: rgba(236, 168, 171, 0.1);
  }

  .hd\:focus\:text-secondary-darkest-10:focus{
    color: rgba(62, 69, 37, 0.1);
  }

  .hd\:focus\:text-secondary-darker-10:focus{
    color: rgba(94, 104, 55, 0.1);
  }

  .hd\:focus\:text-secondary-dark-10:focus{
    color: rgba(125, 138, 74, 0.1);
  }

  .hd\:focus\:text-secondary-10:focus{
    color: rgba(156, 173, 92, 0.1);
  }

  .hd\:focus\:text-secondary-light-10:focus{
    color: rgba(176, 189, 125, 0.1);
  }

  .hd\:focus\:text-secondary-lighter-10:focus{
    color: rgba(196, 206, 157, 0.1);
  }

  .hd\:focus\:text-secondary-lightest-10:focus{
    color: rgba(215, 222, 190, 0.1);
  }

  .hd\:focus\:text-tertiary-darkest-10:focus{
    color: rgba(15, 47, 33, 0.1);
  }

  .hd\:focus\:text-tertiary-darker-10:focus{
    color: rgba(26, 71, 49, 0.1);
  }

  .hd\:focus\:text-tertiary-dark-10:focus{
    color: rgba(31, 157, 85, 0.1);
  }

  .hd\:focus\:text-tertiary-10:focus{
    color: rgba(255, 197, 0, 0.1);
  }

  .hd\:focus\:text-tertiary-light-10:focus{
    color: rgba(81, 216, 138, 0.1);
  }

  .hd\:focus\:text-tertiary-lighter-10:focus{
    color: rgba(162, 245, 191, 0.1);
  }

  .hd\:focus\:text-tertiary-lightest-10:focus{
    color: rgba(227, 252, 236, 0.1);
  }

  .group:hover .hd\:group-hover\:text-border-10{
    color: rgba(230, 235, 245, 0.1);
  }

  .group:hover .hd\:group-hover\:text-form-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:text-form-active-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:text-black-10{
    color: rgba(33, 37, 41, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-10{
    color: rgba(154, 165, 192, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-10{
    color: rgba(66, 80, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-10{
    color: rgba(121, 130, 139, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-light-10{
    color: rgba(179, 188, 197, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-10{
    color: rgba(222, 228, 233, 0.1);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-10{
    color: rgba(244, 246, 249, 0.1);
  }

  .group:hover .hd\:group-hover\:text-white-10{
    color: rgba(255, 255, 255, 0.1);
  }

  .group:hover .hd\:group-hover\:text-red-10{
    color: rgba(211, 26, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:text-green-10{
    color: rgba(102, 187, 8, 0.1);
  }

  .group:hover .hd\:group-hover\:text-blue-10{
    color: rgba(31, 168, 226, 0.1);
  }

  .group:hover .hd\:group-hover\:text-orange-10{
    color: rgba(247, 148, 14, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-10{
    color: rgba(83, 15, 18, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-10{
    color: rgba(124, 23, 27, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-10{
    color: rgba(166, 30, 36, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-10{
    color: rgba(207, 38, 45, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-light-10{
    color: rgba(217, 81, 87, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-10{
    color: rgba(226, 125, 129, 0.1);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-10{
    color: rgba(236, 168, 171, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-10{
    color: rgba(62, 69, 37, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-10{
    color: rgba(94, 104, 55, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-10{
    color: rgba(125, 138, 74, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-10{
    color: rgba(156, 173, 92, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-10{
    color: rgba(176, 189, 125, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-10{
    color: rgba(196, 206, 157, 0.1);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-10{
    color: rgba(215, 222, 190, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-10{
    color: rgba(15, 47, 33, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-10{
    color: rgba(26, 71, 49, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-10{
    color: rgba(31, 157, 85, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-10{
    color: rgba(255, 197, 0, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-10{
    color: rgba(81, 216, 138, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-10{
    color: rgba(162, 245, 191, 0.1);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-10{
    color: rgba(227, 252, 236, 0.1);
  }

  .hd\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:bg-border-20:hover{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:bg-form-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:bg-form-active-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:bg-black-20:hover{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:bg-grey-darkest-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:bg-grey-darker-20:hover{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:bg-grey-dark-20:hover{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:bg-grey-20:hover{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:bg-grey-light-20:hover{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:bg-grey-lighter-20:hover{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:bg-grey-lightest-20:hover{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:bg-white-20:hover{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:bg-red-20:hover{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:bg-green-20:hover{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:bg-blue-20:hover{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:bg-orange-20:hover{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:bg-primary-darkest-20:hover{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:bg-primary-darker-20:hover{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:bg-primary-dark-20:hover{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:bg-primary-20:hover{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:bg-primary-light-20:hover{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:bg-primary-lighter-20:hover{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:bg-primary-lightest-20:hover{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:bg-secondary-darkest-20:hover{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:bg-secondary-darker-20:hover{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:bg-secondary-dark-20:hover{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:bg-secondary-20:hover{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:bg-secondary-light-20:hover{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:bg-secondary-lighter-20:hover{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:bg-secondary-lightest-20:hover{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:bg-tertiary-darkest-20:hover{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:bg-tertiary-darker-20:hover{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:bg-tertiary-dark-20:hover{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:bg-tertiary-20:hover{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:bg-tertiary-light-20:hover{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:bg-tertiary-lighter-20:hover{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:bg-tertiary-lightest-20:hover{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:bg-border-20:focus{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:bg-form-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:bg-form-active-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:bg-black-20:focus{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:bg-grey-darkest-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:bg-grey-darker-20:focus{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:bg-grey-dark-20:focus{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:bg-grey-20:focus{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:bg-grey-light-20:focus{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:bg-grey-lighter-20:focus{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:bg-grey-lightest-20:focus{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:bg-white-20:focus{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:bg-red-20:focus{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:bg-green-20:focus{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:bg-blue-20:focus{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:bg-orange-20:focus{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:bg-primary-darkest-20:focus{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:bg-primary-darker-20:focus{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:bg-primary-dark-20:focus{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:bg-primary-20:focus{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:bg-primary-light-20:focus{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:bg-primary-lighter-20:focus{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:bg-primary-lightest-20:focus{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:bg-secondary-darkest-20:focus{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:bg-secondary-darker-20:focus{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:bg-secondary-dark-20:focus{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:bg-secondary-20:focus{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:bg-secondary-light-20:focus{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:bg-secondary-lighter-20:focus{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:bg-secondary-lightest-20:focus{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:bg-tertiary-darkest-20:focus{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:bg-tertiary-darker-20:focus{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:bg-tertiary-dark-20:focus{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:bg-tertiary-20:focus{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:bg-tertiary-light-20:focus{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:bg-tertiary-lighter-20:focus{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:bg-tertiary-lightest-20:focus{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-border-20{
    background-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-form-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-form-active-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-black-20{
    background-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-20{
    background-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-20{
    background-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-20{
    background-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-20{
    background-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-20{
    background-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-20{
    background-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-white-20{
    background-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-red-20{
    background-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-green-20{
    background-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-blue-20{
    background-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-orange-20{
    background-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-20{
    background-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-20{
    background-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-20{
    background-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-20{
    background-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-20{
    background-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-20{
    background-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-20{
    background-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-20{
    background-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-20{
    background-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-20{
    background-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-20{
    background-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-20{
    background-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-20{
    background-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-20{
    background-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-20{
    background-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-20{
    background-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-20{
    background-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-20{
    background-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-20{
    background-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-20{
    background-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-20{
    background-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-border-20:hover{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:border-t-border-20:hover{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:border-r-border-20:hover{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:border-b-border-20:hover{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:border-l-border-20:hover{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:border-form-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-t-form-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-r-form-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-b-form-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-l-form-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-form-active-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-t-form-active-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-r-form-active-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-b-form-active-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-l-form-active-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-black-20:hover{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:border-t-black-20:hover{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:border-r-black-20:hover{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:border-b-black-20:hover{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:border-l-black-20:hover{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:border-grey-darkest-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-t-grey-darkest-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-r-grey-darkest-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-b-grey-darkest-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-l-grey-darkest-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-grey-darker-20:hover{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-t-grey-darker-20:hover{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-r-grey-darker-20:hover{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-b-grey-darker-20:hover{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-l-grey-darker-20:hover{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:border-grey-dark-20:hover{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-t-grey-dark-20:hover{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-r-grey-dark-20:hover{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-b-grey-dark-20:hover{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-l-grey-dark-20:hover{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:border-grey-20:hover{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-t-grey-20:hover{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-r-grey-20:hover{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-b-grey-20:hover{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-l-grey-20:hover{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:border-grey-light-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-t-grey-light-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-r-grey-light-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-b-grey-light-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-l-grey-light-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-grey-lighter-20:hover{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:border-t-grey-lighter-20:hover{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:border-r-grey-lighter-20:hover{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:border-b-grey-lighter-20:hover{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:border-l-grey-lighter-20:hover{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:border-grey-lightest-20:hover{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:border-t-grey-lightest-20:hover{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:border-r-grey-lightest-20:hover{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:border-b-grey-lightest-20:hover{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:border-l-grey-lightest-20:hover{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:border-white-20:hover{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:border-t-white-20:hover{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:border-r-white-20:hover{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:border-b-white-20:hover{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:border-l-white-20:hover{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:border-red-20:hover{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:border-t-red-20:hover{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:border-r-red-20:hover{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:border-b-red-20:hover{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:border-l-red-20:hover{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:border-green-20:hover{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:border-t-green-20:hover{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:border-r-green-20:hover{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:border-b-green-20:hover{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:border-l-green-20:hover{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:border-blue-20:hover{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:border-t-blue-20:hover{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:border-r-blue-20:hover{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:border-b-blue-20:hover{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:border-l-blue-20:hover{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:border-orange-20:hover{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:border-t-orange-20:hover{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:border-r-orange-20:hover{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:border-b-orange-20:hover{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:border-l-orange-20:hover{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:border-primary-darkest-20:hover{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:border-t-primary-darkest-20:hover{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:border-r-primary-darkest-20:hover{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:border-b-primary-darkest-20:hover{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:border-l-primary-darkest-20:hover{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:border-primary-darker-20:hover{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:border-t-primary-darker-20:hover{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:border-r-primary-darker-20:hover{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:border-b-primary-darker-20:hover{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:border-l-primary-darker-20:hover{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:border-primary-dark-20:hover{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:border-t-primary-dark-20:hover{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:border-r-primary-dark-20:hover{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:border-b-primary-dark-20:hover{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:border-l-primary-dark-20:hover{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:border-primary-20:hover{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:border-t-primary-20:hover{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:border-r-primary-20:hover{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:border-b-primary-20:hover{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:border-l-primary-20:hover{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:border-primary-light-20:hover{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:border-t-primary-light-20:hover{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:border-r-primary-light-20:hover{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:border-b-primary-light-20:hover{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:border-l-primary-light-20:hover{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:border-primary-lighter-20:hover{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:border-t-primary-lighter-20:hover{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:border-r-primary-lighter-20:hover{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:border-b-primary-lighter-20:hover{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:border-l-primary-lighter-20:hover{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:border-primary-lightest-20:hover{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:border-t-primary-lightest-20:hover{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:border-r-primary-lightest-20:hover{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:border-b-primary-lightest-20:hover{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:border-l-primary-lightest-20:hover{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:border-secondary-darkest-20:hover{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:border-t-secondary-darkest-20:hover{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:border-r-secondary-darkest-20:hover{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:border-b-secondary-darkest-20:hover{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:border-l-secondary-darkest-20:hover{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:border-secondary-darker-20:hover{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:border-t-secondary-darker-20:hover{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:border-r-secondary-darker-20:hover{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:border-b-secondary-darker-20:hover{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:border-l-secondary-darker-20:hover{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:border-secondary-dark-20:hover{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:border-t-secondary-dark-20:hover{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:border-r-secondary-dark-20:hover{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:border-b-secondary-dark-20:hover{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:border-l-secondary-dark-20:hover{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:border-secondary-20:hover{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:border-t-secondary-20:hover{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:border-r-secondary-20:hover{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:border-b-secondary-20:hover{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:border-l-secondary-20:hover{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:border-secondary-light-20:hover{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:border-t-secondary-light-20:hover{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:border-r-secondary-light-20:hover{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:border-b-secondary-light-20:hover{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:border-l-secondary-light-20:hover{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:border-secondary-lighter-20:hover{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:border-t-secondary-lighter-20:hover{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:border-r-secondary-lighter-20:hover{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:border-b-secondary-lighter-20:hover{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:border-l-secondary-lighter-20:hover{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:border-secondary-lightest-20:hover{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:border-t-secondary-lightest-20:hover{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:border-r-secondary-lightest-20:hover{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:border-b-secondary-lightest-20:hover{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:border-l-secondary-lightest-20:hover{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:border-tertiary-darkest-20:hover{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:border-t-tertiary-darkest-20:hover{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:border-r-tertiary-darkest-20:hover{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:border-b-tertiary-darkest-20:hover{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:border-l-tertiary-darkest-20:hover{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:border-tertiary-darker-20:hover{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:border-t-tertiary-darker-20:hover{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:border-r-tertiary-darker-20:hover{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:border-b-tertiary-darker-20:hover{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:border-l-tertiary-darker-20:hover{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:border-tertiary-dark-20:hover{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:border-t-tertiary-dark-20:hover{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:border-r-tertiary-dark-20:hover{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:border-b-tertiary-dark-20:hover{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:border-l-tertiary-dark-20:hover{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:border-tertiary-20:hover{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:border-t-tertiary-20:hover{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:border-r-tertiary-20:hover{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:border-b-tertiary-20:hover{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:border-l-tertiary-20:hover{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:border-tertiary-light-20:hover{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:border-t-tertiary-light-20:hover{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:border-r-tertiary-light-20:hover{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:border-b-tertiary-light-20:hover{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:border-l-tertiary-light-20:hover{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:border-tertiary-lighter-20:hover{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:border-t-tertiary-lighter-20:hover{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:border-r-tertiary-lighter-20:hover{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:border-b-tertiary-lighter-20:hover{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:border-l-tertiary-lighter-20:hover{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:border-tertiary-lightest-20:hover{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:border-t-tertiary-lightest-20:hover{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:border-r-tertiary-lightest-20:hover{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:border-b-tertiary-lightest-20:hover{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:border-l-tertiary-lightest-20:hover{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:border-default-20:hover{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-t-default-20:hover{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-r-default-20:hover{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-b-default-20:hover{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:border-l-default-20:hover{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-border-20:focus{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-t-border-20:focus{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-r-border-20:focus{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-b-border-20:focus{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-l-border-20:focus{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:border-form-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-t-form-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-r-form-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-b-form-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-l-form-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-form-active-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-t-form-active-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-r-form-active-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-b-form-active-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-l-form-active-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-black-20:focus{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-t-black-20:focus{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-r-black-20:focus{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-b-black-20:focus{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-l-black-20:focus{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:border-grey-darkest-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-t-grey-darkest-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-r-grey-darkest-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-b-grey-darkest-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-l-grey-darkest-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-grey-darker-20:focus{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-t-grey-darker-20:focus{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-r-grey-darker-20:focus{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-b-grey-darker-20:focus{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-l-grey-darker-20:focus{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:border-grey-dark-20:focus{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-t-grey-dark-20:focus{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-r-grey-dark-20:focus{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-b-grey-dark-20:focus{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-l-grey-dark-20:focus{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:border-grey-20:focus{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-t-grey-20:focus{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-r-grey-20:focus{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-b-grey-20:focus{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-l-grey-20:focus{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:border-grey-light-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-t-grey-light-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-r-grey-light-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-b-grey-light-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-l-grey-light-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-grey-lighter-20:focus{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-t-grey-lighter-20:focus{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-r-grey-lighter-20:focus{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-b-grey-lighter-20:focus{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-l-grey-lighter-20:focus{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:border-grey-lightest-20:focus{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-t-grey-lightest-20:focus{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-r-grey-lightest-20:focus{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-b-grey-lightest-20:focus{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-l-grey-lightest-20:focus{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:border-white-20:focus{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-t-white-20:focus{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-r-white-20:focus{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-b-white-20:focus{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-l-white-20:focus{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:border-red-20:focus{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-t-red-20:focus{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-r-red-20:focus{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-b-red-20:focus{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-l-red-20:focus{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:border-green-20:focus{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-t-green-20:focus{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-r-green-20:focus{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-b-green-20:focus{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-l-green-20:focus{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:border-blue-20:focus{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-t-blue-20:focus{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-r-blue-20:focus{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-b-blue-20:focus{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-l-blue-20:focus{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:border-orange-20:focus{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-t-orange-20:focus{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-r-orange-20:focus{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-b-orange-20:focus{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-l-orange-20:focus{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:border-primary-darkest-20:focus{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-t-primary-darkest-20:focus{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-r-primary-darkest-20:focus{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-b-primary-darkest-20:focus{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-l-primary-darkest-20:focus{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:border-primary-darker-20:focus{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-t-primary-darker-20:focus{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-r-primary-darker-20:focus{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-b-primary-darker-20:focus{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-l-primary-darker-20:focus{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:border-primary-dark-20:focus{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-t-primary-dark-20:focus{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-r-primary-dark-20:focus{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-b-primary-dark-20:focus{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-l-primary-dark-20:focus{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:border-primary-20:focus{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-t-primary-20:focus{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-r-primary-20:focus{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-b-primary-20:focus{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-l-primary-20:focus{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:border-primary-light-20:focus{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-t-primary-light-20:focus{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-r-primary-light-20:focus{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-b-primary-light-20:focus{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-l-primary-light-20:focus{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:border-primary-lighter-20:focus{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-t-primary-lighter-20:focus{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-r-primary-lighter-20:focus{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-b-primary-lighter-20:focus{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-l-primary-lighter-20:focus{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:border-primary-lightest-20:focus{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-t-primary-lightest-20:focus{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-r-primary-lightest-20:focus{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-b-primary-lightest-20:focus{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-l-primary-lightest-20:focus{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:border-secondary-darkest-20:focus{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-t-secondary-darkest-20:focus{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-r-secondary-darkest-20:focus{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-b-secondary-darkest-20:focus{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-l-secondary-darkest-20:focus{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:border-secondary-darker-20:focus{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-t-secondary-darker-20:focus{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-r-secondary-darker-20:focus{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-b-secondary-darker-20:focus{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-l-secondary-darker-20:focus{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:border-secondary-dark-20:focus{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-t-secondary-dark-20:focus{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-r-secondary-dark-20:focus{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-b-secondary-dark-20:focus{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-l-secondary-dark-20:focus{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:border-secondary-20:focus{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-t-secondary-20:focus{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-r-secondary-20:focus{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-b-secondary-20:focus{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-l-secondary-20:focus{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:border-secondary-light-20:focus{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-t-secondary-light-20:focus{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-r-secondary-light-20:focus{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-b-secondary-light-20:focus{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-l-secondary-light-20:focus{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:border-secondary-lighter-20:focus{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-t-secondary-lighter-20:focus{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-r-secondary-lighter-20:focus{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-b-secondary-lighter-20:focus{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-l-secondary-lighter-20:focus{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:border-secondary-lightest-20:focus{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-t-secondary-lightest-20:focus{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-r-secondary-lightest-20:focus{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-b-secondary-lightest-20:focus{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-l-secondary-lightest-20:focus{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:border-tertiary-darkest-20:focus{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-t-tertiary-darkest-20:focus{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-r-tertiary-darkest-20:focus{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-b-tertiary-darkest-20:focus{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-l-tertiary-darkest-20:focus{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:border-tertiary-darker-20:focus{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-t-tertiary-darker-20:focus{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-r-tertiary-darker-20:focus{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-b-tertiary-darker-20:focus{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-l-tertiary-darker-20:focus{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:border-tertiary-dark-20:focus{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-t-tertiary-dark-20:focus{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-r-tertiary-dark-20:focus{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-b-tertiary-dark-20:focus{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-l-tertiary-dark-20:focus{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:border-tertiary-20:focus{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-t-tertiary-20:focus{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-r-tertiary-20:focus{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-b-tertiary-20:focus{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-l-tertiary-20:focus{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:border-tertiary-light-20:focus{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-t-tertiary-light-20:focus{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-r-tertiary-light-20:focus{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-b-tertiary-light-20:focus{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-l-tertiary-light-20:focus{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:border-tertiary-lighter-20:focus{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-t-tertiary-lighter-20:focus{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-r-tertiary-lighter-20:focus{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-b-tertiary-lighter-20:focus{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-l-tertiary-lighter-20:focus{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:border-tertiary-lightest-20:focus{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-t-tertiary-lightest-20:focus{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-r-tertiary-lightest-20:focus{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-b-tertiary-lightest-20:focus{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-l-tertiary-lightest-20:focus{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:border-default-20:focus{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-t-default-20:focus{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-r-default-20:focus{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-b-default-20:focus{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:border-l-default-20:focus{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-border-20{
    border-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-border-20{
    border-top-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-border-20{
    border-right-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-border-20{
    border-bottom-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-border-20{
    border-left-color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:border-form-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-form-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-form-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-form-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-form-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-form-active-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-black-20{
    border-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-black-20{
    border-top-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-black-20{
    border-right-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-black-20{
    border-bottom-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-black-20{
    border-left-color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-20{
    border-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-20{
    border-top-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-20{
    border-right-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-20{
    border-bottom-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-20{
    border-left-color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-20{
    border-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-20{
    border-top-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-20{
    border-right-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-20{
    border-bottom-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-20{
    border-left-color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-20{
    border-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-20{
    border-top-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-20{
    border-right-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-20{
    border-bottom-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-20{
    border-left-color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-light-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-20{
    border-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-20{
    border-top-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-20{
    border-right-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-20{
    border-bottom-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-20{
    border-left-color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-20{
    border-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-20{
    border-top-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-20{
    border-right-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-20{
    border-bottom-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-20{
    border-left-color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:border-white-20{
    border-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-white-20{
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-white-20{
    border-right-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-white-20{
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-white-20{
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:border-red-20{
    border-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-red-20{
    border-top-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-red-20{
    border-right-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-red-20{
    border-bottom-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-red-20{
    border-left-color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-green-20{
    border-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-green-20{
    border-top-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-green-20{
    border-right-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-green-20{
    border-bottom-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-green-20{
    border-left-color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:border-blue-20{
    border-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-blue-20{
    border-top-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-blue-20{
    border-right-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-blue-20{
    border-bottom-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-blue-20{
    border-left-color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:border-orange-20{
    border-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-orange-20{
    border-top-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-orange-20{
    border-right-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-orange-20{
    border-bottom-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-orange-20{
    border-left-color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-20{
    border-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-20{
    border-top-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-20{
    border-right-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-20{
    border-bottom-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-20{
    border-left-color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-20{
    border-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-20{
    border-top-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-20{
    border-right-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-20{
    border-bottom-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-20{
    border-left-color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-20{
    border-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-20{
    border-top-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-20{
    border-right-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-20{
    border-bottom-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-20{
    border-left-color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-20{
    border-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-20{
    border-top-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-20{
    border-right-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-20{
    border-bottom-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-20{
    border-left-color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-light-20{
    border-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-20{
    border-top-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-20{
    border-right-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-20{
    border-bottom-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-20{
    border-left-color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-20{
    border-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-20{
    border-top-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-20{
    border-right-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-20{
    border-bottom-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-20{
    border-left-color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-20{
    border-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-20{
    border-top-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-20{
    border-right-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-20{
    border-bottom-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-20{
    border-left-color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-20{
    border-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-20{
    border-top-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-20{
    border-right-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-20{
    border-bottom-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-20{
    border-left-color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-20{
    border-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-20{
    border-top-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-20{
    border-right-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-20{
    border-bottom-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-20{
    border-left-color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-20{
    border-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-20{
    border-top-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-20{
    border-right-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-20{
    border-bottom-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-20{
    border-left-color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-20{
    border-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-20{
    border-top-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-20{
    border-right-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-20{
    border-bottom-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-20{
    border-left-color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-20{
    border-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-20{
    border-top-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-20{
    border-right-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-20{
    border-bottom-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-20{
    border-left-color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-20{
    border-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-20{
    border-top-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-20{
    border-right-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-20{
    border-bottom-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-20{
    border-left-color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-20{
    border-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-20{
    border-top-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-20{
    border-right-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-20{
    border-bottom-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-20{
    border-left-color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-20{
    border-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-20{
    border-top-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-20{
    border-right-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-20{
    border-bottom-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-20{
    border-left-color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-20{
    border-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-20{
    border-top-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-20{
    border-right-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-20{
    border-bottom-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-20{
    border-left-color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-20{
    border-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-20{
    border-top-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-20{
    border-right-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-20{
    border-bottom-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-20{
    border-left-color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-20{
    border-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-20{
    border-top-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-20{
    border-right-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-20{
    border-bottom-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-20{
    border-left-color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-20{
    border-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-20{
    border-top-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-20{
    border-right-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-20{
    border-bottom-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-20{
    border-left-color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-20{
    border-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-20{
    border-top-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-20{
    border-right-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-20{
    border-bottom-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-20{
    border-left-color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-20{
    border-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-20{
    border-top-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-20{
    border-right-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-20{
    border-bottom-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-20{
    border-left-color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:border-default-20{
    border-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-t-default-20{
    border-top-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-r-default-20{
    border-right-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-b-default-20{
    border-bottom-color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:border-l-default-20{
    border-left-color: rgba(179, 188, 197, 0.2);
  }

  .hd\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .hd\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .hd\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .hd\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .hd\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .hd\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .hd\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .hd\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .hd\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .hd\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .hd\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .hd\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .hd\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .hd\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .hd\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .hd\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .hd\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .hd\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .hd\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .hd\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .hd\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .hd\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .hd\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .hd\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .hd\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .hd\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .hd\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .hd\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .hd\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .hd\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .hd\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .hd\:hover\:text-border-20:hover{
    color: rgba(230, 235, 245, 0.2);
  }

  .hd\:hover\:text-form-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:text-form-active-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:text-black-20:hover{
    color: rgba(33, 37, 41, 0.2);
  }

  .hd\:hover\:text-grey-darkest-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:text-grey-darker-20:hover{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:hover\:text-grey-dark-20:hover{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:hover\:text-grey-20:hover{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:hover\:text-grey-light-20:hover{
    color: rgba(179, 188, 197, 0.2);
  }

  .hd\:hover\:text-grey-lighter-20:hover{
    color: rgba(222, 228, 233, 0.2);
  }

  .hd\:hover\:text-grey-lightest-20:hover{
    color: rgba(244, 246, 249, 0.2);
  }

  .hd\:hover\:text-white-20:hover{
    color: rgba(255, 255, 255, 0.2);
  }

  .hd\:hover\:text-red-20:hover{
    color: rgba(211, 26, 8, 0.2);
  }

  .hd\:hover\:text-green-20:hover{
    color: rgba(102, 187, 8, 0.2);
  }

  .hd\:hover\:text-blue-20:hover{
    color: rgba(31, 168, 226, 0.2);
  }

  .hd\:hover\:text-orange-20:hover{
    color: rgba(247, 148, 14, 0.2);
  }

  .hd\:hover\:text-primary-darkest-20:hover{
    color: rgba(83, 15, 18, 0.2);
  }

  .hd\:hover\:text-primary-darker-20:hover{
    color: rgba(124, 23, 27, 0.2);
  }

  .hd\:hover\:text-primary-dark-20:hover{
    color: rgba(166, 30, 36, 0.2);
  }

  .hd\:hover\:text-primary-20:hover{
    color: rgba(207, 38, 45, 0.2);
  }

  .hd\:hover\:text-primary-light-20:hover{
    color: rgba(217, 81, 87, 0.2);
  }

  .hd\:hover\:text-primary-lighter-20:hover{
    color: rgba(226, 125, 129, 0.2);
  }

  .hd\:hover\:text-primary-lightest-20:hover{
    color: rgba(236, 168, 171, 0.2);
  }

  .hd\:hover\:text-secondary-darkest-20:hover{
    color: rgba(62, 69, 37, 0.2);
  }

  .hd\:hover\:text-secondary-darker-20:hover{
    color: rgba(94, 104, 55, 0.2);
  }

  .hd\:hover\:text-secondary-dark-20:hover{
    color: rgba(125, 138, 74, 0.2);
  }

  .hd\:hover\:text-secondary-20:hover{
    color: rgba(156, 173, 92, 0.2);
  }

  .hd\:hover\:text-secondary-light-20:hover{
    color: rgba(176, 189, 125, 0.2);
  }

  .hd\:hover\:text-secondary-lighter-20:hover{
    color: rgba(196, 206, 157, 0.2);
  }

  .hd\:hover\:text-secondary-lightest-20:hover{
    color: rgba(215, 222, 190, 0.2);
  }

  .hd\:hover\:text-tertiary-darkest-20:hover{
    color: rgba(15, 47, 33, 0.2);
  }

  .hd\:hover\:text-tertiary-darker-20:hover{
    color: rgba(26, 71, 49, 0.2);
  }

  .hd\:hover\:text-tertiary-dark-20:hover{
    color: rgba(31, 157, 85, 0.2);
  }

  .hd\:hover\:text-tertiary-20:hover{
    color: rgba(255, 197, 0, 0.2);
  }

  .hd\:hover\:text-tertiary-light-20:hover{
    color: rgba(81, 216, 138, 0.2);
  }

  .hd\:hover\:text-tertiary-lighter-20:hover{
    color: rgba(162, 245, 191, 0.2);
  }

  .hd\:hover\:text-tertiary-lightest-20:hover{
    color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .hd\:focus\:text-border-20:focus{
    color: rgba(230, 235, 245, 0.2);
  }

  .hd\:focus\:text-form-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:text-form-active-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:text-black-20:focus{
    color: rgba(33, 37, 41, 0.2);
  }

  .hd\:focus\:text-grey-darkest-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:text-grey-darker-20:focus{
    color: rgba(154, 165, 192, 0.2);
  }

  .hd\:focus\:text-grey-dark-20:focus{
    color: rgba(66, 80, 92, 0.2);
  }

  .hd\:focus\:text-grey-20:focus{
    color: rgba(121, 130, 139, 0.2);
  }

  .hd\:focus\:text-grey-light-20:focus{
    color: rgba(179, 188, 197, 0.2);
  }

  .hd\:focus\:text-grey-lighter-20:focus{
    color: rgba(222, 228, 233, 0.2);
  }

  .hd\:focus\:text-grey-lightest-20:focus{
    color: rgba(244, 246, 249, 0.2);
  }

  .hd\:focus\:text-white-20:focus{
    color: rgba(255, 255, 255, 0.2);
  }

  .hd\:focus\:text-red-20:focus{
    color: rgba(211, 26, 8, 0.2);
  }

  .hd\:focus\:text-green-20:focus{
    color: rgba(102, 187, 8, 0.2);
  }

  .hd\:focus\:text-blue-20:focus{
    color: rgba(31, 168, 226, 0.2);
  }

  .hd\:focus\:text-orange-20:focus{
    color: rgba(247, 148, 14, 0.2);
  }

  .hd\:focus\:text-primary-darkest-20:focus{
    color: rgba(83, 15, 18, 0.2);
  }

  .hd\:focus\:text-primary-darker-20:focus{
    color: rgba(124, 23, 27, 0.2);
  }

  .hd\:focus\:text-primary-dark-20:focus{
    color: rgba(166, 30, 36, 0.2);
  }

  .hd\:focus\:text-primary-20:focus{
    color: rgba(207, 38, 45, 0.2);
  }

  .hd\:focus\:text-primary-light-20:focus{
    color: rgba(217, 81, 87, 0.2);
  }

  .hd\:focus\:text-primary-lighter-20:focus{
    color: rgba(226, 125, 129, 0.2);
  }

  .hd\:focus\:text-primary-lightest-20:focus{
    color: rgba(236, 168, 171, 0.2);
  }

  .hd\:focus\:text-secondary-darkest-20:focus{
    color: rgba(62, 69, 37, 0.2);
  }

  .hd\:focus\:text-secondary-darker-20:focus{
    color: rgba(94, 104, 55, 0.2);
  }

  .hd\:focus\:text-secondary-dark-20:focus{
    color: rgba(125, 138, 74, 0.2);
  }

  .hd\:focus\:text-secondary-20:focus{
    color: rgba(156, 173, 92, 0.2);
  }

  .hd\:focus\:text-secondary-light-20:focus{
    color: rgba(176, 189, 125, 0.2);
  }

  .hd\:focus\:text-secondary-lighter-20:focus{
    color: rgba(196, 206, 157, 0.2);
  }

  .hd\:focus\:text-secondary-lightest-20:focus{
    color: rgba(215, 222, 190, 0.2);
  }

  .hd\:focus\:text-tertiary-darkest-20:focus{
    color: rgba(15, 47, 33, 0.2);
  }

  .hd\:focus\:text-tertiary-darker-20:focus{
    color: rgba(26, 71, 49, 0.2);
  }

  .hd\:focus\:text-tertiary-dark-20:focus{
    color: rgba(31, 157, 85, 0.2);
  }

  .hd\:focus\:text-tertiary-20:focus{
    color: rgba(255, 197, 0, 0.2);
  }

  .hd\:focus\:text-tertiary-light-20:focus{
    color: rgba(81, 216, 138, 0.2);
  }

  .hd\:focus\:text-tertiary-lighter-20:focus{
    color: rgba(162, 245, 191, 0.2);
  }

  .hd\:focus\:text-tertiary-lightest-20:focus{
    color: rgba(227, 252, 236, 0.2);
  }

  .group:hover .hd\:group-hover\:text-border-20{
    color: rgba(230, 235, 245, 0.2);
  }

  .group:hover .hd\:group-hover\:text-form-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:text-form-active-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:text-black-20{
    color: rgba(33, 37, 41, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-20{
    color: rgba(154, 165, 192, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-20{
    color: rgba(66, 80, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-20{
    color: rgba(121, 130, 139, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-light-20{
    color: rgba(179, 188, 197, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-20{
    color: rgba(222, 228, 233, 0.2);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-20{
    color: rgba(244, 246, 249, 0.2);
  }

  .group:hover .hd\:group-hover\:text-white-20{
    color: rgba(255, 255, 255, 0.2);
  }

  .group:hover .hd\:group-hover\:text-red-20{
    color: rgba(211, 26, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:text-green-20{
    color: rgba(102, 187, 8, 0.2);
  }

  .group:hover .hd\:group-hover\:text-blue-20{
    color: rgba(31, 168, 226, 0.2);
  }

  .group:hover .hd\:group-hover\:text-orange-20{
    color: rgba(247, 148, 14, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-20{
    color: rgba(83, 15, 18, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-20{
    color: rgba(124, 23, 27, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-20{
    color: rgba(166, 30, 36, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-20{
    color: rgba(207, 38, 45, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-light-20{
    color: rgba(217, 81, 87, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-20{
    color: rgba(226, 125, 129, 0.2);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-20{
    color: rgba(236, 168, 171, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-20{
    color: rgba(62, 69, 37, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-20{
    color: rgba(94, 104, 55, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-20{
    color: rgba(125, 138, 74, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-20{
    color: rgba(156, 173, 92, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-20{
    color: rgba(176, 189, 125, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-20{
    color: rgba(196, 206, 157, 0.2);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-20{
    color: rgba(215, 222, 190, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-20{
    color: rgba(15, 47, 33, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-20{
    color: rgba(26, 71, 49, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-20{
    color: rgba(31, 157, 85, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-20{
    color: rgba(255, 197, 0, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-20{
    color: rgba(81, 216, 138, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-20{
    color: rgba(162, 245, 191, 0.2);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-20{
    color: rgba(227, 252, 236, 0.2);
  }

  .hd\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:bg-border-30:hover{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:bg-form-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:bg-form-active-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:bg-black-30:hover{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:bg-grey-darkest-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:bg-grey-darker-30:hover{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:bg-grey-dark-30:hover{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:bg-grey-30:hover{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:bg-grey-light-30:hover{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:bg-grey-lighter-30:hover{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:bg-grey-lightest-30:hover{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:bg-white-30:hover{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:bg-red-30:hover{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:bg-green-30:hover{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:bg-blue-30:hover{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:bg-orange-30:hover{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:bg-primary-darkest-30:hover{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:bg-primary-darker-30:hover{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:bg-primary-dark-30:hover{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:bg-primary-30:hover{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:bg-primary-light-30:hover{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:bg-primary-lighter-30:hover{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:bg-primary-lightest-30:hover{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:bg-secondary-darkest-30:hover{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:bg-secondary-darker-30:hover{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:bg-secondary-dark-30:hover{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:bg-secondary-30:hover{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:bg-secondary-light-30:hover{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:bg-secondary-lighter-30:hover{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:bg-secondary-lightest-30:hover{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:bg-tertiary-darkest-30:hover{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:bg-tertiary-darker-30:hover{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:bg-tertiary-dark-30:hover{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:bg-tertiary-30:hover{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:bg-tertiary-light-30:hover{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:bg-tertiary-lighter-30:hover{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:bg-tertiary-lightest-30:hover{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:bg-border-30:focus{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:bg-form-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:bg-form-active-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:bg-black-30:focus{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:bg-grey-darkest-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:bg-grey-darker-30:focus{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:bg-grey-dark-30:focus{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:bg-grey-30:focus{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:bg-grey-light-30:focus{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:bg-grey-lighter-30:focus{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:bg-grey-lightest-30:focus{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:bg-white-30:focus{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:bg-red-30:focus{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:bg-green-30:focus{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:bg-blue-30:focus{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:bg-orange-30:focus{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:bg-primary-darkest-30:focus{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:bg-primary-darker-30:focus{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:bg-primary-dark-30:focus{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:bg-primary-30:focus{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:bg-primary-light-30:focus{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:bg-primary-lighter-30:focus{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:bg-primary-lightest-30:focus{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:bg-secondary-darkest-30:focus{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:bg-secondary-darker-30:focus{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:bg-secondary-dark-30:focus{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:bg-secondary-30:focus{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:bg-secondary-light-30:focus{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:bg-secondary-lighter-30:focus{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:bg-secondary-lightest-30:focus{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:bg-tertiary-darkest-30:focus{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:bg-tertiary-darker-30:focus{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:bg-tertiary-dark-30:focus{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:bg-tertiary-30:focus{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:bg-tertiary-light-30:focus{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:bg-tertiary-lighter-30:focus{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:bg-tertiary-lightest-30:focus{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-border-30{
    background-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-form-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-form-active-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-black-30{
    background-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-30{
    background-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-30{
    background-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-30{
    background-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-30{
    background-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-30{
    background-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-30{
    background-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-white-30{
    background-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-red-30{
    background-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-green-30{
    background-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-blue-30{
    background-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-orange-30{
    background-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-30{
    background-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-30{
    background-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-30{
    background-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-30{
    background-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-30{
    background-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-30{
    background-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-30{
    background-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-30{
    background-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-30{
    background-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-30{
    background-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-30{
    background-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-30{
    background-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-30{
    background-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-30{
    background-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-30{
    background-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-30{
    background-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-30{
    background-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-30{
    background-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-30{
    background-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-30{
    background-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-30{
    background-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-border-30:hover{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:border-t-border-30:hover{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:border-r-border-30:hover{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:border-b-border-30:hover{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:border-l-border-30:hover{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:border-form-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-t-form-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-r-form-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-b-form-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-l-form-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-form-active-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-t-form-active-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-r-form-active-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-b-form-active-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-l-form-active-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-black-30:hover{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:border-t-black-30:hover{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:border-r-black-30:hover{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:border-b-black-30:hover{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:border-l-black-30:hover{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:border-grey-darkest-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-t-grey-darkest-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-r-grey-darkest-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-b-grey-darkest-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-l-grey-darkest-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-grey-darker-30:hover{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-t-grey-darker-30:hover{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-r-grey-darker-30:hover{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-b-grey-darker-30:hover{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-l-grey-darker-30:hover{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:border-grey-dark-30:hover{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-t-grey-dark-30:hover{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-r-grey-dark-30:hover{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-b-grey-dark-30:hover{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-l-grey-dark-30:hover{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:border-grey-30:hover{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-t-grey-30:hover{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-r-grey-30:hover{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-b-grey-30:hover{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-l-grey-30:hover{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:border-grey-light-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-t-grey-light-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-r-grey-light-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-b-grey-light-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-l-grey-light-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-grey-lighter-30:hover{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:border-t-grey-lighter-30:hover{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:border-r-grey-lighter-30:hover{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:border-b-grey-lighter-30:hover{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:border-l-grey-lighter-30:hover{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:border-grey-lightest-30:hover{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:border-t-grey-lightest-30:hover{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:border-r-grey-lightest-30:hover{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:border-b-grey-lightest-30:hover{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:border-l-grey-lightest-30:hover{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:border-white-30:hover{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:border-t-white-30:hover{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:border-r-white-30:hover{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:border-b-white-30:hover{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:border-l-white-30:hover{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:border-red-30:hover{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:border-t-red-30:hover{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:border-r-red-30:hover{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:border-b-red-30:hover{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:border-l-red-30:hover{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:border-green-30:hover{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:border-t-green-30:hover{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:border-r-green-30:hover{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:border-b-green-30:hover{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:border-l-green-30:hover{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:border-blue-30:hover{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:border-t-blue-30:hover{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:border-r-blue-30:hover{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:border-b-blue-30:hover{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:border-l-blue-30:hover{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:border-orange-30:hover{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:border-t-orange-30:hover{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:border-r-orange-30:hover{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:border-b-orange-30:hover{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:border-l-orange-30:hover{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:border-primary-darkest-30:hover{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:border-t-primary-darkest-30:hover{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:border-r-primary-darkest-30:hover{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:border-b-primary-darkest-30:hover{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:border-l-primary-darkest-30:hover{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:border-primary-darker-30:hover{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:border-t-primary-darker-30:hover{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:border-r-primary-darker-30:hover{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:border-b-primary-darker-30:hover{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:border-l-primary-darker-30:hover{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:border-primary-dark-30:hover{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:border-t-primary-dark-30:hover{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:border-r-primary-dark-30:hover{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:border-b-primary-dark-30:hover{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:border-l-primary-dark-30:hover{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:border-primary-30:hover{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:border-t-primary-30:hover{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:border-r-primary-30:hover{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:border-b-primary-30:hover{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:border-l-primary-30:hover{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:border-primary-light-30:hover{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:border-t-primary-light-30:hover{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:border-r-primary-light-30:hover{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:border-b-primary-light-30:hover{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:border-l-primary-light-30:hover{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:border-primary-lighter-30:hover{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:border-t-primary-lighter-30:hover{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:border-r-primary-lighter-30:hover{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:border-b-primary-lighter-30:hover{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:border-l-primary-lighter-30:hover{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:border-primary-lightest-30:hover{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:border-t-primary-lightest-30:hover{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:border-r-primary-lightest-30:hover{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:border-b-primary-lightest-30:hover{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:border-l-primary-lightest-30:hover{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:border-secondary-darkest-30:hover{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:border-t-secondary-darkest-30:hover{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:border-r-secondary-darkest-30:hover{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:border-b-secondary-darkest-30:hover{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:border-l-secondary-darkest-30:hover{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:border-secondary-darker-30:hover{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:border-t-secondary-darker-30:hover{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:border-r-secondary-darker-30:hover{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:border-b-secondary-darker-30:hover{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:border-l-secondary-darker-30:hover{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:border-secondary-dark-30:hover{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:border-t-secondary-dark-30:hover{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:border-r-secondary-dark-30:hover{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:border-b-secondary-dark-30:hover{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:border-l-secondary-dark-30:hover{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:border-secondary-30:hover{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:border-t-secondary-30:hover{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:border-r-secondary-30:hover{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:border-b-secondary-30:hover{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:border-l-secondary-30:hover{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:border-secondary-light-30:hover{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:border-t-secondary-light-30:hover{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:border-r-secondary-light-30:hover{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:border-b-secondary-light-30:hover{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:border-l-secondary-light-30:hover{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:border-secondary-lighter-30:hover{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:border-t-secondary-lighter-30:hover{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:border-r-secondary-lighter-30:hover{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:border-b-secondary-lighter-30:hover{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:border-l-secondary-lighter-30:hover{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:border-secondary-lightest-30:hover{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:border-t-secondary-lightest-30:hover{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:border-r-secondary-lightest-30:hover{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:border-b-secondary-lightest-30:hover{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:border-l-secondary-lightest-30:hover{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:border-tertiary-darkest-30:hover{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:border-t-tertiary-darkest-30:hover{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:border-r-tertiary-darkest-30:hover{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:border-b-tertiary-darkest-30:hover{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:border-l-tertiary-darkest-30:hover{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:border-tertiary-darker-30:hover{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:border-t-tertiary-darker-30:hover{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:border-r-tertiary-darker-30:hover{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:border-b-tertiary-darker-30:hover{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:border-l-tertiary-darker-30:hover{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:border-tertiary-dark-30:hover{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:border-t-tertiary-dark-30:hover{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:border-r-tertiary-dark-30:hover{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:border-b-tertiary-dark-30:hover{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:border-l-tertiary-dark-30:hover{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:border-tertiary-30:hover{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:border-t-tertiary-30:hover{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:border-r-tertiary-30:hover{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:border-b-tertiary-30:hover{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:border-l-tertiary-30:hover{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:border-tertiary-light-30:hover{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:border-t-tertiary-light-30:hover{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:border-r-tertiary-light-30:hover{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:border-b-tertiary-light-30:hover{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:border-l-tertiary-light-30:hover{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:border-tertiary-lighter-30:hover{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:border-t-tertiary-lighter-30:hover{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:border-r-tertiary-lighter-30:hover{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:border-b-tertiary-lighter-30:hover{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:border-l-tertiary-lighter-30:hover{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:border-tertiary-lightest-30:hover{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:border-t-tertiary-lightest-30:hover{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:border-r-tertiary-lightest-30:hover{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:border-b-tertiary-lightest-30:hover{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:border-l-tertiary-lightest-30:hover{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:border-default-30:hover{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-t-default-30:hover{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-r-default-30:hover{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-b-default-30:hover{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:border-l-default-30:hover{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-border-30:focus{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-t-border-30:focus{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-r-border-30:focus{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-b-border-30:focus{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-l-border-30:focus{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:border-form-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-t-form-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-r-form-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-b-form-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-l-form-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-form-active-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-t-form-active-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-r-form-active-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-b-form-active-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-l-form-active-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-black-30:focus{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-t-black-30:focus{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-r-black-30:focus{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-b-black-30:focus{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-l-black-30:focus{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:border-grey-darkest-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-t-grey-darkest-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-r-grey-darkest-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-b-grey-darkest-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-l-grey-darkest-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-grey-darker-30:focus{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-t-grey-darker-30:focus{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-r-grey-darker-30:focus{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-b-grey-darker-30:focus{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-l-grey-darker-30:focus{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:border-grey-dark-30:focus{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-t-grey-dark-30:focus{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-r-grey-dark-30:focus{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-b-grey-dark-30:focus{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-l-grey-dark-30:focus{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:border-grey-30:focus{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-t-grey-30:focus{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-r-grey-30:focus{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-b-grey-30:focus{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-l-grey-30:focus{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:border-grey-light-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-t-grey-light-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-r-grey-light-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-b-grey-light-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-l-grey-light-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-grey-lighter-30:focus{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-t-grey-lighter-30:focus{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-r-grey-lighter-30:focus{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-b-grey-lighter-30:focus{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-l-grey-lighter-30:focus{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:border-grey-lightest-30:focus{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-t-grey-lightest-30:focus{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-r-grey-lightest-30:focus{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-b-grey-lightest-30:focus{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-l-grey-lightest-30:focus{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:border-white-30:focus{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-t-white-30:focus{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-r-white-30:focus{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-b-white-30:focus{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-l-white-30:focus{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:border-red-30:focus{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-t-red-30:focus{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-r-red-30:focus{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-b-red-30:focus{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-l-red-30:focus{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:border-green-30:focus{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-t-green-30:focus{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-r-green-30:focus{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-b-green-30:focus{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-l-green-30:focus{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:border-blue-30:focus{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-t-blue-30:focus{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-r-blue-30:focus{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-b-blue-30:focus{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-l-blue-30:focus{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:border-orange-30:focus{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-t-orange-30:focus{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-r-orange-30:focus{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-b-orange-30:focus{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-l-orange-30:focus{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:border-primary-darkest-30:focus{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-t-primary-darkest-30:focus{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-r-primary-darkest-30:focus{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-b-primary-darkest-30:focus{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-l-primary-darkest-30:focus{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:border-primary-darker-30:focus{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-t-primary-darker-30:focus{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-r-primary-darker-30:focus{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-b-primary-darker-30:focus{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-l-primary-darker-30:focus{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:border-primary-dark-30:focus{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-t-primary-dark-30:focus{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-r-primary-dark-30:focus{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-b-primary-dark-30:focus{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-l-primary-dark-30:focus{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:border-primary-30:focus{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-t-primary-30:focus{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-r-primary-30:focus{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-b-primary-30:focus{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-l-primary-30:focus{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:border-primary-light-30:focus{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-t-primary-light-30:focus{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-r-primary-light-30:focus{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-b-primary-light-30:focus{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-l-primary-light-30:focus{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:border-primary-lighter-30:focus{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-t-primary-lighter-30:focus{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-r-primary-lighter-30:focus{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-b-primary-lighter-30:focus{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-l-primary-lighter-30:focus{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:border-primary-lightest-30:focus{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-t-primary-lightest-30:focus{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-r-primary-lightest-30:focus{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-b-primary-lightest-30:focus{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-l-primary-lightest-30:focus{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:border-secondary-darkest-30:focus{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-t-secondary-darkest-30:focus{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-r-secondary-darkest-30:focus{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-b-secondary-darkest-30:focus{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-l-secondary-darkest-30:focus{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:border-secondary-darker-30:focus{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-t-secondary-darker-30:focus{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-r-secondary-darker-30:focus{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-b-secondary-darker-30:focus{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-l-secondary-darker-30:focus{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:border-secondary-dark-30:focus{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-t-secondary-dark-30:focus{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-r-secondary-dark-30:focus{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-b-secondary-dark-30:focus{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-l-secondary-dark-30:focus{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:border-secondary-30:focus{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-t-secondary-30:focus{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-r-secondary-30:focus{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-b-secondary-30:focus{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-l-secondary-30:focus{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:border-secondary-light-30:focus{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-t-secondary-light-30:focus{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-r-secondary-light-30:focus{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-b-secondary-light-30:focus{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-l-secondary-light-30:focus{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:border-secondary-lighter-30:focus{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-t-secondary-lighter-30:focus{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-r-secondary-lighter-30:focus{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-b-secondary-lighter-30:focus{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-l-secondary-lighter-30:focus{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:border-secondary-lightest-30:focus{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-t-secondary-lightest-30:focus{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-r-secondary-lightest-30:focus{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-b-secondary-lightest-30:focus{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-l-secondary-lightest-30:focus{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:border-tertiary-darkest-30:focus{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-t-tertiary-darkest-30:focus{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-r-tertiary-darkest-30:focus{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-b-tertiary-darkest-30:focus{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-l-tertiary-darkest-30:focus{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:border-tertiary-darker-30:focus{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-t-tertiary-darker-30:focus{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-r-tertiary-darker-30:focus{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-b-tertiary-darker-30:focus{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-l-tertiary-darker-30:focus{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:border-tertiary-dark-30:focus{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-t-tertiary-dark-30:focus{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-r-tertiary-dark-30:focus{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-b-tertiary-dark-30:focus{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-l-tertiary-dark-30:focus{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:border-tertiary-30:focus{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-t-tertiary-30:focus{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-r-tertiary-30:focus{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-b-tertiary-30:focus{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-l-tertiary-30:focus{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:border-tertiary-light-30:focus{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-t-tertiary-light-30:focus{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-r-tertiary-light-30:focus{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-b-tertiary-light-30:focus{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-l-tertiary-light-30:focus{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:border-tertiary-lighter-30:focus{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-t-tertiary-lighter-30:focus{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-r-tertiary-lighter-30:focus{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-b-tertiary-lighter-30:focus{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-l-tertiary-lighter-30:focus{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:border-tertiary-lightest-30:focus{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-t-tertiary-lightest-30:focus{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-r-tertiary-lightest-30:focus{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-b-tertiary-lightest-30:focus{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-l-tertiary-lightest-30:focus{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:border-default-30:focus{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-t-default-30:focus{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-r-default-30:focus{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-b-default-30:focus{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:border-l-default-30:focus{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-border-30{
    border-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-border-30{
    border-top-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-border-30{
    border-right-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-border-30{
    border-bottom-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-border-30{
    border-left-color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:border-form-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-form-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-form-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-form-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-form-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-form-active-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-black-30{
    border-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-black-30{
    border-top-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-black-30{
    border-right-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-black-30{
    border-bottom-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-black-30{
    border-left-color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-30{
    border-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-30{
    border-top-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-30{
    border-right-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-30{
    border-bottom-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-30{
    border-left-color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-30{
    border-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-30{
    border-top-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-30{
    border-right-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-30{
    border-bottom-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-30{
    border-left-color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-30{
    border-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-30{
    border-top-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-30{
    border-right-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-30{
    border-bottom-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-30{
    border-left-color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-light-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-30{
    border-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-30{
    border-top-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-30{
    border-right-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-30{
    border-bottom-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-30{
    border-left-color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-30{
    border-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-30{
    border-top-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-30{
    border-right-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-30{
    border-bottom-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-30{
    border-left-color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:border-white-30{
    border-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-white-30{
    border-top-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-white-30{
    border-right-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-white-30{
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-white-30{
    border-left-color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:border-red-30{
    border-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-red-30{
    border-top-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-red-30{
    border-right-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-red-30{
    border-bottom-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-red-30{
    border-left-color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-green-30{
    border-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-green-30{
    border-top-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-green-30{
    border-right-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-green-30{
    border-bottom-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-green-30{
    border-left-color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:border-blue-30{
    border-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-blue-30{
    border-top-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-blue-30{
    border-right-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-blue-30{
    border-bottom-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-blue-30{
    border-left-color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:border-orange-30{
    border-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-orange-30{
    border-top-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-orange-30{
    border-right-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-orange-30{
    border-bottom-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-orange-30{
    border-left-color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-30{
    border-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-30{
    border-top-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-30{
    border-right-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-30{
    border-bottom-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-30{
    border-left-color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-30{
    border-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-30{
    border-top-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-30{
    border-right-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-30{
    border-bottom-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-30{
    border-left-color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-30{
    border-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-30{
    border-top-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-30{
    border-right-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-30{
    border-bottom-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-30{
    border-left-color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-30{
    border-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-30{
    border-top-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-30{
    border-right-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-30{
    border-bottom-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-30{
    border-left-color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-light-30{
    border-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-30{
    border-top-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-30{
    border-right-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-30{
    border-bottom-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-30{
    border-left-color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-30{
    border-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-30{
    border-top-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-30{
    border-right-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-30{
    border-bottom-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-30{
    border-left-color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-30{
    border-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-30{
    border-top-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-30{
    border-right-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-30{
    border-bottom-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-30{
    border-left-color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-30{
    border-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-30{
    border-top-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-30{
    border-right-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-30{
    border-bottom-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-30{
    border-left-color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-30{
    border-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-30{
    border-top-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-30{
    border-right-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-30{
    border-bottom-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-30{
    border-left-color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-30{
    border-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-30{
    border-top-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-30{
    border-right-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-30{
    border-bottom-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-30{
    border-left-color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-30{
    border-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-30{
    border-top-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-30{
    border-right-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-30{
    border-bottom-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-30{
    border-left-color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-30{
    border-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-30{
    border-top-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-30{
    border-right-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-30{
    border-bottom-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-30{
    border-left-color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-30{
    border-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-30{
    border-top-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-30{
    border-right-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-30{
    border-bottom-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-30{
    border-left-color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-30{
    border-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-30{
    border-top-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-30{
    border-right-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-30{
    border-bottom-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-30{
    border-left-color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-30{
    border-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-30{
    border-top-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-30{
    border-right-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-30{
    border-bottom-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-30{
    border-left-color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-30{
    border-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-30{
    border-top-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-30{
    border-right-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-30{
    border-bottom-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-30{
    border-left-color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-30{
    border-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-30{
    border-top-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-30{
    border-right-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-30{
    border-bottom-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-30{
    border-left-color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-30{
    border-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-30{
    border-top-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-30{
    border-right-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-30{
    border-bottom-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-30{
    border-left-color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-30{
    border-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-30{
    border-top-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-30{
    border-right-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-30{
    border-bottom-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-30{
    border-left-color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-30{
    border-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-30{
    border-top-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-30{
    border-right-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-30{
    border-bottom-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-30{
    border-left-color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-30{
    border-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-30{
    border-top-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-30{
    border-right-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-30{
    border-bottom-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-30{
    border-left-color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:border-default-30{
    border-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-t-default-30{
    border-top-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-r-default-30{
    border-right-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-b-default-30{
    border-bottom-color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:border-l-default-30{
    border-left-color: rgba(179, 188, 197, 0.3);
  }

  .hd\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .hd\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .hd\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .hd\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .hd\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .hd\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .hd\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .hd\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .hd\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .hd\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .hd\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .hd\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .hd\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .hd\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .hd\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .hd\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .hd\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .hd\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .hd\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .hd\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .hd\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .hd\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .hd\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .hd\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .hd\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .hd\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .hd\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .hd\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .hd\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .hd\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .hd\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .hd\:hover\:text-border-30:hover{
    color: rgba(230, 235, 245, 0.3);
  }

  .hd\:hover\:text-form-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:text-form-active-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:text-black-30:hover{
    color: rgba(33, 37, 41, 0.3);
  }

  .hd\:hover\:text-grey-darkest-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:text-grey-darker-30:hover{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:hover\:text-grey-dark-30:hover{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:hover\:text-grey-30:hover{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:hover\:text-grey-light-30:hover{
    color: rgba(179, 188, 197, 0.3);
  }

  .hd\:hover\:text-grey-lighter-30:hover{
    color: rgba(222, 228, 233, 0.3);
  }

  .hd\:hover\:text-grey-lightest-30:hover{
    color: rgba(244, 246, 249, 0.3);
  }

  .hd\:hover\:text-white-30:hover{
    color: rgba(255, 255, 255, 0.3);
  }

  .hd\:hover\:text-red-30:hover{
    color: rgba(211, 26, 8, 0.3);
  }

  .hd\:hover\:text-green-30:hover{
    color: rgba(102, 187, 8, 0.3);
  }

  .hd\:hover\:text-blue-30:hover{
    color: rgba(31, 168, 226, 0.3);
  }

  .hd\:hover\:text-orange-30:hover{
    color: rgba(247, 148, 14, 0.3);
  }

  .hd\:hover\:text-primary-darkest-30:hover{
    color: rgba(83, 15, 18, 0.3);
  }

  .hd\:hover\:text-primary-darker-30:hover{
    color: rgba(124, 23, 27, 0.3);
  }

  .hd\:hover\:text-primary-dark-30:hover{
    color: rgba(166, 30, 36, 0.3);
  }

  .hd\:hover\:text-primary-30:hover{
    color: rgba(207, 38, 45, 0.3);
  }

  .hd\:hover\:text-primary-light-30:hover{
    color: rgba(217, 81, 87, 0.3);
  }

  .hd\:hover\:text-primary-lighter-30:hover{
    color: rgba(226, 125, 129, 0.3);
  }

  .hd\:hover\:text-primary-lightest-30:hover{
    color: rgba(236, 168, 171, 0.3);
  }

  .hd\:hover\:text-secondary-darkest-30:hover{
    color: rgba(62, 69, 37, 0.3);
  }

  .hd\:hover\:text-secondary-darker-30:hover{
    color: rgba(94, 104, 55, 0.3);
  }

  .hd\:hover\:text-secondary-dark-30:hover{
    color: rgba(125, 138, 74, 0.3);
  }

  .hd\:hover\:text-secondary-30:hover{
    color: rgba(156, 173, 92, 0.3);
  }

  .hd\:hover\:text-secondary-light-30:hover{
    color: rgba(176, 189, 125, 0.3);
  }

  .hd\:hover\:text-secondary-lighter-30:hover{
    color: rgba(196, 206, 157, 0.3);
  }

  .hd\:hover\:text-secondary-lightest-30:hover{
    color: rgba(215, 222, 190, 0.3);
  }

  .hd\:hover\:text-tertiary-darkest-30:hover{
    color: rgba(15, 47, 33, 0.3);
  }

  .hd\:hover\:text-tertiary-darker-30:hover{
    color: rgba(26, 71, 49, 0.3);
  }

  .hd\:hover\:text-tertiary-dark-30:hover{
    color: rgba(31, 157, 85, 0.3);
  }

  .hd\:hover\:text-tertiary-30:hover{
    color: rgba(255, 197, 0, 0.3);
  }

  .hd\:hover\:text-tertiary-light-30:hover{
    color: rgba(81, 216, 138, 0.3);
  }

  .hd\:hover\:text-tertiary-lighter-30:hover{
    color: rgba(162, 245, 191, 0.3);
  }

  .hd\:hover\:text-tertiary-lightest-30:hover{
    color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .hd\:focus\:text-border-30:focus{
    color: rgba(230, 235, 245, 0.3);
  }

  .hd\:focus\:text-form-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:text-form-active-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:text-black-30:focus{
    color: rgba(33, 37, 41, 0.3);
  }

  .hd\:focus\:text-grey-darkest-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:text-grey-darker-30:focus{
    color: rgba(154, 165, 192, 0.3);
  }

  .hd\:focus\:text-grey-dark-30:focus{
    color: rgba(66, 80, 92, 0.3);
  }

  .hd\:focus\:text-grey-30:focus{
    color: rgba(121, 130, 139, 0.3);
  }

  .hd\:focus\:text-grey-light-30:focus{
    color: rgba(179, 188, 197, 0.3);
  }

  .hd\:focus\:text-grey-lighter-30:focus{
    color: rgba(222, 228, 233, 0.3);
  }

  .hd\:focus\:text-grey-lightest-30:focus{
    color: rgba(244, 246, 249, 0.3);
  }

  .hd\:focus\:text-white-30:focus{
    color: rgba(255, 255, 255, 0.3);
  }

  .hd\:focus\:text-red-30:focus{
    color: rgba(211, 26, 8, 0.3);
  }

  .hd\:focus\:text-green-30:focus{
    color: rgba(102, 187, 8, 0.3);
  }

  .hd\:focus\:text-blue-30:focus{
    color: rgba(31, 168, 226, 0.3);
  }

  .hd\:focus\:text-orange-30:focus{
    color: rgba(247, 148, 14, 0.3);
  }

  .hd\:focus\:text-primary-darkest-30:focus{
    color: rgba(83, 15, 18, 0.3);
  }

  .hd\:focus\:text-primary-darker-30:focus{
    color: rgba(124, 23, 27, 0.3);
  }

  .hd\:focus\:text-primary-dark-30:focus{
    color: rgba(166, 30, 36, 0.3);
  }

  .hd\:focus\:text-primary-30:focus{
    color: rgba(207, 38, 45, 0.3);
  }

  .hd\:focus\:text-primary-light-30:focus{
    color: rgba(217, 81, 87, 0.3);
  }

  .hd\:focus\:text-primary-lighter-30:focus{
    color: rgba(226, 125, 129, 0.3);
  }

  .hd\:focus\:text-primary-lightest-30:focus{
    color: rgba(236, 168, 171, 0.3);
  }

  .hd\:focus\:text-secondary-darkest-30:focus{
    color: rgba(62, 69, 37, 0.3);
  }

  .hd\:focus\:text-secondary-darker-30:focus{
    color: rgba(94, 104, 55, 0.3);
  }

  .hd\:focus\:text-secondary-dark-30:focus{
    color: rgba(125, 138, 74, 0.3);
  }

  .hd\:focus\:text-secondary-30:focus{
    color: rgba(156, 173, 92, 0.3);
  }

  .hd\:focus\:text-secondary-light-30:focus{
    color: rgba(176, 189, 125, 0.3);
  }

  .hd\:focus\:text-secondary-lighter-30:focus{
    color: rgba(196, 206, 157, 0.3);
  }

  .hd\:focus\:text-secondary-lightest-30:focus{
    color: rgba(215, 222, 190, 0.3);
  }

  .hd\:focus\:text-tertiary-darkest-30:focus{
    color: rgba(15, 47, 33, 0.3);
  }

  .hd\:focus\:text-tertiary-darker-30:focus{
    color: rgba(26, 71, 49, 0.3);
  }

  .hd\:focus\:text-tertiary-dark-30:focus{
    color: rgba(31, 157, 85, 0.3);
  }

  .hd\:focus\:text-tertiary-30:focus{
    color: rgba(255, 197, 0, 0.3);
  }

  .hd\:focus\:text-tertiary-light-30:focus{
    color: rgba(81, 216, 138, 0.3);
  }

  .hd\:focus\:text-tertiary-lighter-30:focus{
    color: rgba(162, 245, 191, 0.3);
  }

  .hd\:focus\:text-tertiary-lightest-30:focus{
    color: rgba(227, 252, 236, 0.3);
  }

  .group:hover .hd\:group-hover\:text-border-30{
    color: rgba(230, 235, 245, 0.3);
  }

  .group:hover .hd\:group-hover\:text-form-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:text-form-active-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:text-black-30{
    color: rgba(33, 37, 41, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-30{
    color: rgba(154, 165, 192, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-30{
    color: rgba(66, 80, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-30{
    color: rgba(121, 130, 139, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-light-30{
    color: rgba(179, 188, 197, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-30{
    color: rgba(222, 228, 233, 0.3);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-30{
    color: rgba(244, 246, 249, 0.3);
  }

  .group:hover .hd\:group-hover\:text-white-30{
    color: rgba(255, 255, 255, 0.3);
  }

  .group:hover .hd\:group-hover\:text-red-30{
    color: rgba(211, 26, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:text-green-30{
    color: rgba(102, 187, 8, 0.3);
  }

  .group:hover .hd\:group-hover\:text-blue-30{
    color: rgba(31, 168, 226, 0.3);
  }

  .group:hover .hd\:group-hover\:text-orange-30{
    color: rgba(247, 148, 14, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-30{
    color: rgba(83, 15, 18, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-30{
    color: rgba(124, 23, 27, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-30{
    color: rgba(166, 30, 36, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-30{
    color: rgba(207, 38, 45, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-light-30{
    color: rgba(217, 81, 87, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-30{
    color: rgba(226, 125, 129, 0.3);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-30{
    color: rgba(236, 168, 171, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-30{
    color: rgba(62, 69, 37, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-30{
    color: rgba(94, 104, 55, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-30{
    color: rgba(125, 138, 74, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-30{
    color: rgba(156, 173, 92, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-30{
    color: rgba(176, 189, 125, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-30{
    color: rgba(196, 206, 157, 0.3);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-30{
    color: rgba(215, 222, 190, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-30{
    color: rgba(15, 47, 33, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-30{
    color: rgba(26, 71, 49, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-30{
    color: rgba(31, 157, 85, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-30{
    color: rgba(255, 197, 0, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-30{
    color: rgba(81, 216, 138, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-30{
    color: rgba(162, 245, 191, 0.3);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-30{
    color: rgba(227, 252, 236, 0.3);
  }

  .hd\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:bg-border-40:hover{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:bg-form-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:bg-form-active-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:bg-black-40:hover{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:bg-grey-darkest-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:bg-grey-darker-40:hover{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:bg-grey-dark-40:hover{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:bg-grey-40:hover{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:bg-grey-light-40:hover{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:bg-grey-lighter-40:hover{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:bg-grey-lightest-40:hover{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:bg-white-40:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:bg-red-40:hover{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:bg-green-40:hover{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:bg-blue-40:hover{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:bg-orange-40:hover{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:bg-primary-darkest-40:hover{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:bg-primary-darker-40:hover{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:bg-primary-dark-40:hover{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:bg-primary-40:hover{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:bg-primary-light-40:hover{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:bg-primary-lighter-40:hover{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:bg-primary-lightest-40:hover{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:bg-secondary-darkest-40:hover{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:bg-secondary-darker-40:hover{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:bg-secondary-dark-40:hover{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:bg-secondary-40:hover{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:bg-secondary-light-40:hover{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:bg-secondary-lighter-40:hover{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:bg-secondary-lightest-40:hover{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:bg-tertiary-darkest-40:hover{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:bg-tertiary-darker-40:hover{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:bg-tertiary-dark-40:hover{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:bg-tertiary-40:hover{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:bg-tertiary-light-40:hover{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:bg-tertiary-lighter-40:hover{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:bg-tertiary-lightest-40:hover{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:bg-border-40:focus{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:bg-form-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:bg-form-active-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:bg-black-40:focus{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:bg-grey-darkest-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:bg-grey-darker-40:focus{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:bg-grey-dark-40:focus{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:bg-grey-40:focus{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:bg-grey-light-40:focus{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:bg-grey-lighter-40:focus{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:bg-grey-lightest-40:focus{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:bg-white-40:focus{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:bg-red-40:focus{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:bg-green-40:focus{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:bg-blue-40:focus{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:bg-orange-40:focus{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:bg-primary-darkest-40:focus{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:bg-primary-darker-40:focus{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:bg-primary-dark-40:focus{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:bg-primary-40:focus{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:bg-primary-light-40:focus{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:bg-primary-lighter-40:focus{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:bg-primary-lightest-40:focus{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:bg-secondary-darkest-40:focus{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:bg-secondary-darker-40:focus{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:bg-secondary-dark-40:focus{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:bg-secondary-40:focus{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:bg-secondary-light-40:focus{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:bg-secondary-lighter-40:focus{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:bg-secondary-lightest-40:focus{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:bg-tertiary-darkest-40:focus{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:bg-tertiary-darker-40:focus{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:bg-tertiary-dark-40:focus{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:bg-tertiary-40:focus{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:bg-tertiary-light-40:focus{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:bg-tertiary-lighter-40:focus{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:bg-tertiary-lightest-40:focus{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-border-40{
    background-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-form-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-form-active-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-black-40{
    background-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-40{
    background-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-40{
    background-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-40{
    background-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-40{
    background-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-40{
    background-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-40{
    background-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-white-40{
    background-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-red-40{
    background-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-green-40{
    background-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-blue-40{
    background-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-orange-40{
    background-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-40{
    background-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-40{
    background-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-40{
    background-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-40{
    background-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-40{
    background-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-40{
    background-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-40{
    background-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-40{
    background-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-40{
    background-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-40{
    background-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-40{
    background-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-40{
    background-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-40{
    background-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-40{
    background-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-40{
    background-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-40{
    background-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-40{
    background-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-40{
    background-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-40{
    background-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-40{
    background-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-40{
    background-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-border-40:hover{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:border-t-border-40:hover{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:border-r-border-40:hover{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:border-b-border-40:hover{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:border-l-border-40:hover{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:border-form-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-t-form-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-r-form-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-b-form-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-l-form-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-form-active-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-t-form-active-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-r-form-active-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-b-form-active-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-l-form-active-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-black-40:hover{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:border-t-black-40:hover{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:border-r-black-40:hover{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:border-b-black-40:hover{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:border-l-black-40:hover{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:border-grey-darkest-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-t-grey-darkest-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-r-grey-darkest-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-b-grey-darkest-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-l-grey-darkest-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-grey-darker-40:hover{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-t-grey-darker-40:hover{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-r-grey-darker-40:hover{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-b-grey-darker-40:hover{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-l-grey-darker-40:hover{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:border-grey-dark-40:hover{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-t-grey-dark-40:hover{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-r-grey-dark-40:hover{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-b-grey-dark-40:hover{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-l-grey-dark-40:hover{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:border-grey-40:hover{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-t-grey-40:hover{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-r-grey-40:hover{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-b-grey-40:hover{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-l-grey-40:hover{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:border-grey-light-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-t-grey-light-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-r-grey-light-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-b-grey-light-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-l-grey-light-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-grey-lighter-40:hover{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:border-t-grey-lighter-40:hover{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:border-r-grey-lighter-40:hover{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:border-b-grey-lighter-40:hover{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:border-l-grey-lighter-40:hover{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:border-grey-lightest-40:hover{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:border-t-grey-lightest-40:hover{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:border-r-grey-lightest-40:hover{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:border-b-grey-lightest-40:hover{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:border-l-grey-lightest-40:hover{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:border-white-40:hover{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:border-t-white-40:hover{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:border-r-white-40:hover{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:border-b-white-40:hover{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:border-l-white-40:hover{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:border-red-40:hover{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:border-t-red-40:hover{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:border-r-red-40:hover{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:border-b-red-40:hover{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:border-l-red-40:hover{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:border-green-40:hover{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:border-t-green-40:hover{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:border-r-green-40:hover{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:border-b-green-40:hover{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:border-l-green-40:hover{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:border-blue-40:hover{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:border-t-blue-40:hover{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:border-r-blue-40:hover{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:border-b-blue-40:hover{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:border-l-blue-40:hover{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:border-orange-40:hover{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:border-t-orange-40:hover{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:border-r-orange-40:hover{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:border-b-orange-40:hover{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:border-l-orange-40:hover{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:border-primary-darkest-40:hover{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:border-t-primary-darkest-40:hover{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:border-r-primary-darkest-40:hover{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:border-b-primary-darkest-40:hover{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:border-l-primary-darkest-40:hover{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:border-primary-darker-40:hover{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:border-t-primary-darker-40:hover{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:border-r-primary-darker-40:hover{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:border-b-primary-darker-40:hover{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:border-l-primary-darker-40:hover{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:border-primary-dark-40:hover{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:border-t-primary-dark-40:hover{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:border-r-primary-dark-40:hover{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:border-b-primary-dark-40:hover{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:border-l-primary-dark-40:hover{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:border-primary-40:hover{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:border-t-primary-40:hover{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:border-r-primary-40:hover{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:border-b-primary-40:hover{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:border-l-primary-40:hover{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:border-primary-light-40:hover{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:border-t-primary-light-40:hover{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:border-r-primary-light-40:hover{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:border-b-primary-light-40:hover{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:border-l-primary-light-40:hover{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:border-primary-lighter-40:hover{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:border-t-primary-lighter-40:hover{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:border-r-primary-lighter-40:hover{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:border-b-primary-lighter-40:hover{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:border-l-primary-lighter-40:hover{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:border-primary-lightest-40:hover{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:border-t-primary-lightest-40:hover{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:border-r-primary-lightest-40:hover{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:border-b-primary-lightest-40:hover{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:border-l-primary-lightest-40:hover{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:border-secondary-darkest-40:hover{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:border-t-secondary-darkest-40:hover{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:border-r-secondary-darkest-40:hover{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:border-b-secondary-darkest-40:hover{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:border-l-secondary-darkest-40:hover{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:border-secondary-darker-40:hover{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:border-t-secondary-darker-40:hover{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:border-r-secondary-darker-40:hover{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:border-b-secondary-darker-40:hover{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:border-l-secondary-darker-40:hover{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:border-secondary-dark-40:hover{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:border-t-secondary-dark-40:hover{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:border-r-secondary-dark-40:hover{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:border-b-secondary-dark-40:hover{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:border-l-secondary-dark-40:hover{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:border-secondary-40:hover{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:border-t-secondary-40:hover{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:border-r-secondary-40:hover{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:border-b-secondary-40:hover{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:border-l-secondary-40:hover{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:border-secondary-light-40:hover{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:border-t-secondary-light-40:hover{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:border-r-secondary-light-40:hover{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:border-b-secondary-light-40:hover{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:border-l-secondary-light-40:hover{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:border-secondary-lighter-40:hover{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:border-t-secondary-lighter-40:hover{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:border-r-secondary-lighter-40:hover{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:border-b-secondary-lighter-40:hover{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:border-l-secondary-lighter-40:hover{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:border-secondary-lightest-40:hover{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:border-t-secondary-lightest-40:hover{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:border-r-secondary-lightest-40:hover{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:border-b-secondary-lightest-40:hover{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:border-l-secondary-lightest-40:hover{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:border-tertiary-darkest-40:hover{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:border-t-tertiary-darkest-40:hover{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:border-r-tertiary-darkest-40:hover{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:border-b-tertiary-darkest-40:hover{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:border-l-tertiary-darkest-40:hover{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:border-tertiary-darker-40:hover{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:border-t-tertiary-darker-40:hover{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:border-r-tertiary-darker-40:hover{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:border-b-tertiary-darker-40:hover{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:border-l-tertiary-darker-40:hover{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:border-tertiary-dark-40:hover{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:border-t-tertiary-dark-40:hover{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:border-r-tertiary-dark-40:hover{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:border-b-tertiary-dark-40:hover{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:border-l-tertiary-dark-40:hover{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:border-tertiary-40:hover{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:border-t-tertiary-40:hover{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:border-r-tertiary-40:hover{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:border-b-tertiary-40:hover{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:border-l-tertiary-40:hover{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:border-tertiary-light-40:hover{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:border-t-tertiary-light-40:hover{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:border-r-tertiary-light-40:hover{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:border-b-tertiary-light-40:hover{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:border-l-tertiary-light-40:hover{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:border-tertiary-lighter-40:hover{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:border-t-tertiary-lighter-40:hover{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:border-r-tertiary-lighter-40:hover{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:border-b-tertiary-lighter-40:hover{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:border-l-tertiary-lighter-40:hover{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:border-tertiary-lightest-40:hover{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:border-t-tertiary-lightest-40:hover{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:border-r-tertiary-lightest-40:hover{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:border-b-tertiary-lightest-40:hover{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:border-l-tertiary-lightest-40:hover{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:border-default-40:hover{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-t-default-40:hover{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-r-default-40:hover{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-b-default-40:hover{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:border-l-default-40:hover{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-border-40:focus{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-t-border-40:focus{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-r-border-40:focus{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-b-border-40:focus{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-l-border-40:focus{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:border-form-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-t-form-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-r-form-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-b-form-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-l-form-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-form-active-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-t-form-active-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-r-form-active-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-b-form-active-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-l-form-active-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-black-40:focus{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-t-black-40:focus{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-r-black-40:focus{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-b-black-40:focus{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-l-black-40:focus{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:border-grey-darkest-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-t-grey-darkest-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-r-grey-darkest-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-b-grey-darkest-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-l-grey-darkest-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-grey-darker-40:focus{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-t-grey-darker-40:focus{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-r-grey-darker-40:focus{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-b-grey-darker-40:focus{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-l-grey-darker-40:focus{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:border-grey-dark-40:focus{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-t-grey-dark-40:focus{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-r-grey-dark-40:focus{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-b-grey-dark-40:focus{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-l-grey-dark-40:focus{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:border-grey-40:focus{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-t-grey-40:focus{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-r-grey-40:focus{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-b-grey-40:focus{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-l-grey-40:focus{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:border-grey-light-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-t-grey-light-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-r-grey-light-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-b-grey-light-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-l-grey-light-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-grey-lighter-40:focus{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-t-grey-lighter-40:focus{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-r-grey-lighter-40:focus{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-b-grey-lighter-40:focus{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-l-grey-lighter-40:focus{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:border-grey-lightest-40:focus{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-t-grey-lightest-40:focus{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-r-grey-lightest-40:focus{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-b-grey-lightest-40:focus{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-l-grey-lightest-40:focus{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:border-white-40:focus{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-t-white-40:focus{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-r-white-40:focus{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-b-white-40:focus{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-l-white-40:focus{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:border-red-40:focus{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-t-red-40:focus{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-r-red-40:focus{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-b-red-40:focus{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-l-red-40:focus{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:border-green-40:focus{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-t-green-40:focus{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-r-green-40:focus{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-b-green-40:focus{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-l-green-40:focus{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:border-blue-40:focus{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-t-blue-40:focus{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-r-blue-40:focus{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-b-blue-40:focus{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-l-blue-40:focus{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:border-orange-40:focus{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-t-orange-40:focus{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-r-orange-40:focus{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-b-orange-40:focus{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-l-orange-40:focus{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:border-primary-darkest-40:focus{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-t-primary-darkest-40:focus{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-r-primary-darkest-40:focus{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-b-primary-darkest-40:focus{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-l-primary-darkest-40:focus{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:border-primary-darker-40:focus{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-t-primary-darker-40:focus{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-r-primary-darker-40:focus{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-b-primary-darker-40:focus{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-l-primary-darker-40:focus{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:border-primary-dark-40:focus{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-t-primary-dark-40:focus{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-r-primary-dark-40:focus{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-b-primary-dark-40:focus{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-l-primary-dark-40:focus{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:border-primary-40:focus{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-t-primary-40:focus{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-r-primary-40:focus{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-b-primary-40:focus{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-l-primary-40:focus{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:border-primary-light-40:focus{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-t-primary-light-40:focus{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-r-primary-light-40:focus{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-b-primary-light-40:focus{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-l-primary-light-40:focus{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:border-primary-lighter-40:focus{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-t-primary-lighter-40:focus{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-r-primary-lighter-40:focus{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-b-primary-lighter-40:focus{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-l-primary-lighter-40:focus{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:border-primary-lightest-40:focus{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-t-primary-lightest-40:focus{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-r-primary-lightest-40:focus{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-b-primary-lightest-40:focus{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-l-primary-lightest-40:focus{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:border-secondary-darkest-40:focus{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-t-secondary-darkest-40:focus{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-r-secondary-darkest-40:focus{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-b-secondary-darkest-40:focus{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-l-secondary-darkest-40:focus{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:border-secondary-darker-40:focus{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-t-secondary-darker-40:focus{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-r-secondary-darker-40:focus{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-b-secondary-darker-40:focus{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-l-secondary-darker-40:focus{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:border-secondary-dark-40:focus{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-t-secondary-dark-40:focus{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-r-secondary-dark-40:focus{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-b-secondary-dark-40:focus{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-l-secondary-dark-40:focus{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:border-secondary-40:focus{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-t-secondary-40:focus{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-r-secondary-40:focus{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-b-secondary-40:focus{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-l-secondary-40:focus{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:border-secondary-light-40:focus{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-t-secondary-light-40:focus{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-r-secondary-light-40:focus{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-b-secondary-light-40:focus{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-l-secondary-light-40:focus{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:border-secondary-lighter-40:focus{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-t-secondary-lighter-40:focus{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-r-secondary-lighter-40:focus{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-b-secondary-lighter-40:focus{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-l-secondary-lighter-40:focus{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:border-secondary-lightest-40:focus{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-t-secondary-lightest-40:focus{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-r-secondary-lightest-40:focus{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-b-secondary-lightest-40:focus{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-l-secondary-lightest-40:focus{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:border-tertiary-darkest-40:focus{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-t-tertiary-darkest-40:focus{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-r-tertiary-darkest-40:focus{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-b-tertiary-darkest-40:focus{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-l-tertiary-darkest-40:focus{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:border-tertiary-darker-40:focus{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-t-tertiary-darker-40:focus{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-r-tertiary-darker-40:focus{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-b-tertiary-darker-40:focus{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-l-tertiary-darker-40:focus{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:border-tertiary-dark-40:focus{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-t-tertiary-dark-40:focus{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-r-tertiary-dark-40:focus{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-b-tertiary-dark-40:focus{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-l-tertiary-dark-40:focus{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:border-tertiary-40:focus{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-t-tertiary-40:focus{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-r-tertiary-40:focus{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-b-tertiary-40:focus{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-l-tertiary-40:focus{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:border-tertiary-light-40:focus{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-t-tertiary-light-40:focus{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-r-tertiary-light-40:focus{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-b-tertiary-light-40:focus{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-l-tertiary-light-40:focus{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:border-tertiary-lighter-40:focus{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-t-tertiary-lighter-40:focus{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-r-tertiary-lighter-40:focus{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-b-tertiary-lighter-40:focus{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-l-tertiary-lighter-40:focus{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:border-tertiary-lightest-40:focus{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-t-tertiary-lightest-40:focus{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-r-tertiary-lightest-40:focus{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-b-tertiary-lightest-40:focus{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-l-tertiary-lightest-40:focus{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:border-default-40:focus{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-t-default-40:focus{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-r-default-40:focus{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-b-default-40:focus{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:border-l-default-40:focus{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-border-40{
    border-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-border-40{
    border-top-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-border-40{
    border-right-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-border-40{
    border-bottom-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-border-40{
    border-left-color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:border-form-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-form-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-form-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-form-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-form-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-form-active-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-black-40{
    border-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-black-40{
    border-top-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-black-40{
    border-right-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-black-40{
    border-bottom-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-black-40{
    border-left-color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-40{
    border-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-40{
    border-top-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-40{
    border-right-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-40{
    border-bottom-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-40{
    border-left-color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-40{
    border-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-40{
    border-top-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-40{
    border-right-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-40{
    border-bottom-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-40{
    border-left-color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-40{
    border-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-40{
    border-top-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-40{
    border-right-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-40{
    border-bottom-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-40{
    border-left-color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-light-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-40{
    border-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-40{
    border-top-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-40{
    border-right-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-40{
    border-bottom-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-40{
    border-left-color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-40{
    border-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-40{
    border-top-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-40{
    border-right-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-40{
    border-bottom-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-40{
    border-left-color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:border-white-40{
    border-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-white-40{
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-white-40{
    border-right-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-white-40{
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-white-40{
    border-left-color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:border-red-40{
    border-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-red-40{
    border-top-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-red-40{
    border-right-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-red-40{
    border-bottom-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-red-40{
    border-left-color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-green-40{
    border-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-green-40{
    border-top-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-green-40{
    border-right-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-green-40{
    border-bottom-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-green-40{
    border-left-color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:border-blue-40{
    border-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-blue-40{
    border-top-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-blue-40{
    border-right-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-blue-40{
    border-bottom-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-blue-40{
    border-left-color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:border-orange-40{
    border-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-orange-40{
    border-top-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-orange-40{
    border-right-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-orange-40{
    border-bottom-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-orange-40{
    border-left-color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-40{
    border-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-40{
    border-top-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-40{
    border-right-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-40{
    border-bottom-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-40{
    border-left-color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-40{
    border-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-40{
    border-top-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-40{
    border-right-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-40{
    border-bottom-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-40{
    border-left-color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-40{
    border-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-40{
    border-top-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-40{
    border-right-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-40{
    border-bottom-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-40{
    border-left-color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-40{
    border-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-40{
    border-top-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-40{
    border-right-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-40{
    border-bottom-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-40{
    border-left-color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-light-40{
    border-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-40{
    border-top-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-40{
    border-right-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-40{
    border-bottom-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-40{
    border-left-color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-40{
    border-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-40{
    border-top-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-40{
    border-right-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-40{
    border-bottom-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-40{
    border-left-color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-40{
    border-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-40{
    border-top-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-40{
    border-right-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-40{
    border-bottom-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-40{
    border-left-color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-40{
    border-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-40{
    border-top-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-40{
    border-right-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-40{
    border-bottom-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-40{
    border-left-color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-40{
    border-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-40{
    border-top-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-40{
    border-right-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-40{
    border-bottom-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-40{
    border-left-color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-40{
    border-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-40{
    border-top-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-40{
    border-right-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-40{
    border-bottom-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-40{
    border-left-color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-40{
    border-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-40{
    border-top-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-40{
    border-right-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-40{
    border-bottom-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-40{
    border-left-color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-40{
    border-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-40{
    border-top-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-40{
    border-right-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-40{
    border-bottom-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-40{
    border-left-color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-40{
    border-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-40{
    border-top-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-40{
    border-right-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-40{
    border-bottom-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-40{
    border-left-color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-40{
    border-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-40{
    border-top-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-40{
    border-right-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-40{
    border-bottom-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-40{
    border-left-color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-40{
    border-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-40{
    border-top-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-40{
    border-right-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-40{
    border-bottom-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-40{
    border-left-color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-40{
    border-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-40{
    border-top-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-40{
    border-right-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-40{
    border-bottom-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-40{
    border-left-color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-40{
    border-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-40{
    border-top-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-40{
    border-right-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-40{
    border-bottom-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-40{
    border-left-color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-40{
    border-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-40{
    border-top-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-40{
    border-right-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-40{
    border-bottom-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-40{
    border-left-color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-40{
    border-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-40{
    border-top-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-40{
    border-right-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-40{
    border-bottom-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-40{
    border-left-color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-40{
    border-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-40{
    border-top-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-40{
    border-right-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-40{
    border-bottom-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-40{
    border-left-color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-40{
    border-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-40{
    border-top-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-40{
    border-right-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-40{
    border-bottom-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-40{
    border-left-color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:border-default-40{
    border-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-t-default-40{
    border-top-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-r-default-40{
    border-right-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-b-default-40{
    border-bottom-color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:border-l-default-40{
    border-left-color: rgba(179, 188, 197, 0.4);
  }

  .hd\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .hd\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .hd\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .hd\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .hd\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .hd\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .hd\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .hd\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .hd\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .hd\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .hd\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .hd\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .hd\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .hd\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .hd\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .hd\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .hd\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .hd\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .hd\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .hd\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .hd\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .hd\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .hd\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .hd\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .hd\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .hd\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .hd\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .hd\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .hd\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .hd\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .hd\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .hd\:hover\:text-border-40:hover{
    color: rgba(230, 235, 245, 0.4);
  }

  .hd\:hover\:text-form-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:text-form-active-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:text-black-40:hover{
    color: rgba(33, 37, 41, 0.4);
  }

  .hd\:hover\:text-grey-darkest-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:text-grey-darker-40:hover{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:hover\:text-grey-dark-40:hover{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:hover\:text-grey-40:hover{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:hover\:text-grey-light-40:hover{
    color: rgba(179, 188, 197, 0.4);
  }

  .hd\:hover\:text-grey-lighter-40:hover{
    color: rgba(222, 228, 233, 0.4);
  }

  .hd\:hover\:text-grey-lightest-40:hover{
    color: rgba(244, 246, 249, 0.4);
  }

  .hd\:hover\:text-white-40:hover{
    color: rgba(255, 255, 255, 0.4);
  }

  .hd\:hover\:text-red-40:hover{
    color: rgba(211, 26, 8, 0.4);
  }

  .hd\:hover\:text-green-40:hover{
    color: rgba(102, 187, 8, 0.4);
  }

  .hd\:hover\:text-blue-40:hover{
    color: rgba(31, 168, 226, 0.4);
  }

  .hd\:hover\:text-orange-40:hover{
    color: rgba(247, 148, 14, 0.4);
  }

  .hd\:hover\:text-primary-darkest-40:hover{
    color: rgba(83, 15, 18, 0.4);
  }

  .hd\:hover\:text-primary-darker-40:hover{
    color: rgba(124, 23, 27, 0.4);
  }

  .hd\:hover\:text-primary-dark-40:hover{
    color: rgba(166, 30, 36, 0.4);
  }

  .hd\:hover\:text-primary-40:hover{
    color: rgba(207, 38, 45, 0.4);
  }

  .hd\:hover\:text-primary-light-40:hover{
    color: rgba(217, 81, 87, 0.4);
  }

  .hd\:hover\:text-primary-lighter-40:hover{
    color: rgba(226, 125, 129, 0.4);
  }

  .hd\:hover\:text-primary-lightest-40:hover{
    color: rgba(236, 168, 171, 0.4);
  }

  .hd\:hover\:text-secondary-darkest-40:hover{
    color: rgba(62, 69, 37, 0.4);
  }

  .hd\:hover\:text-secondary-darker-40:hover{
    color: rgba(94, 104, 55, 0.4);
  }

  .hd\:hover\:text-secondary-dark-40:hover{
    color: rgba(125, 138, 74, 0.4);
  }

  .hd\:hover\:text-secondary-40:hover{
    color: rgba(156, 173, 92, 0.4);
  }

  .hd\:hover\:text-secondary-light-40:hover{
    color: rgba(176, 189, 125, 0.4);
  }

  .hd\:hover\:text-secondary-lighter-40:hover{
    color: rgba(196, 206, 157, 0.4);
  }

  .hd\:hover\:text-secondary-lightest-40:hover{
    color: rgba(215, 222, 190, 0.4);
  }

  .hd\:hover\:text-tertiary-darkest-40:hover{
    color: rgba(15, 47, 33, 0.4);
  }

  .hd\:hover\:text-tertiary-darker-40:hover{
    color: rgba(26, 71, 49, 0.4);
  }

  .hd\:hover\:text-tertiary-dark-40:hover{
    color: rgba(31, 157, 85, 0.4);
  }

  .hd\:hover\:text-tertiary-40:hover{
    color: rgba(255, 197, 0, 0.4);
  }

  .hd\:hover\:text-tertiary-light-40:hover{
    color: rgba(81, 216, 138, 0.4);
  }

  .hd\:hover\:text-tertiary-lighter-40:hover{
    color: rgba(162, 245, 191, 0.4);
  }

  .hd\:hover\:text-tertiary-lightest-40:hover{
    color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .hd\:focus\:text-border-40:focus{
    color: rgba(230, 235, 245, 0.4);
  }

  .hd\:focus\:text-form-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:text-form-active-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:text-black-40:focus{
    color: rgba(33, 37, 41, 0.4);
  }

  .hd\:focus\:text-grey-darkest-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:text-grey-darker-40:focus{
    color: rgba(154, 165, 192, 0.4);
  }

  .hd\:focus\:text-grey-dark-40:focus{
    color: rgba(66, 80, 92, 0.4);
  }

  .hd\:focus\:text-grey-40:focus{
    color: rgba(121, 130, 139, 0.4);
  }

  .hd\:focus\:text-grey-light-40:focus{
    color: rgba(179, 188, 197, 0.4);
  }

  .hd\:focus\:text-grey-lighter-40:focus{
    color: rgba(222, 228, 233, 0.4);
  }

  .hd\:focus\:text-grey-lightest-40:focus{
    color: rgba(244, 246, 249, 0.4);
  }

  .hd\:focus\:text-white-40:focus{
    color: rgba(255, 255, 255, 0.4);
  }

  .hd\:focus\:text-red-40:focus{
    color: rgba(211, 26, 8, 0.4);
  }

  .hd\:focus\:text-green-40:focus{
    color: rgba(102, 187, 8, 0.4);
  }

  .hd\:focus\:text-blue-40:focus{
    color: rgba(31, 168, 226, 0.4);
  }

  .hd\:focus\:text-orange-40:focus{
    color: rgba(247, 148, 14, 0.4);
  }

  .hd\:focus\:text-primary-darkest-40:focus{
    color: rgba(83, 15, 18, 0.4);
  }

  .hd\:focus\:text-primary-darker-40:focus{
    color: rgba(124, 23, 27, 0.4);
  }

  .hd\:focus\:text-primary-dark-40:focus{
    color: rgba(166, 30, 36, 0.4);
  }

  .hd\:focus\:text-primary-40:focus{
    color: rgba(207, 38, 45, 0.4);
  }

  .hd\:focus\:text-primary-light-40:focus{
    color: rgba(217, 81, 87, 0.4);
  }

  .hd\:focus\:text-primary-lighter-40:focus{
    color: rgba(226, 125, 129, 0.4);
  }

  .hd\:focus\:text-primary-lightest-40:focus{
    color: rgba(236, 168, 171, 0.4);
  }

  .hd\:focus\:text-secondary-darkest-40:focus{
    color: rgba(62, 69, 37, 0.4);
  }

  .hd\:focus\:text-secondary-darker-40:focus{
    color: rgba(94, 104, 55, 0.4);
  }

  .hd\:focus\:text-secondary-dark-40:focus{
    color: rgba(125, 138, 74, 0.4);
  }

  .hd\:focus\:text-secondary-40:focus{
    color: rgba(156, 173, 92, 0.4);
  }

  .hd\:focus\:text-secondary-light-40:focus{
    color: rgba(176, 189, 125, 0.4);
  }

  .hd\:focus\:text-secondary-lighter-40:focus{
    color: rgba(196, 206, 157, 0.4);
  }

  .hd\:focus\:text-secondary-lightest-40:focus{
    color: rgba(215, 222, 190, 0.4);
  }

  .hd\:focus\:text-tertiary-darkest-40:focus{
    color: rgba(15, 47, 33, 0.4);
  }

  .hd\:focus\:text-tertiary-darker-40:focus{
    color: rgba(26, 71, 49, 0.4);
  }

  .hd\:focus\:text-tertiary-dark-40:focus{
    color: rgba(31, 157, 85, 0.4);
  }

  .hd\:focus\:text-tertiary-40:focus{
    color: rgba(255, 197, 0, 0.4);
  }

  .hd\:focus\:text-tertiary-light-40:focus{
    color: rgba(81, 216, 138, 0.4);
  }

  .hd\:focus\:text-tertiary-lighter-40:focus{
    color: rgba(162, 245, 191, 0.4);
  }

  .hd\:focus\:text-tertiary-lightest-40:focus{
    color: rgba(227, 252, 236, 0.4);
  }

  .group:hover .hd\:group-hover\:text-border-40{
    color: rgba(230, 235, 245, 0.4);
  }

  .group:hover .hd\:group-hover\:text-form-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:text-form-active-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:text-black-40{
    color: rgba(33, 37, 41, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-40{
    color: rgba(154, 165, 192, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-40{
    color: rgba(66, 80, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-40{
    color: rgba(121, 130, 139, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-light-40{
    color: rgba(179, 188, 197, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-40{
    color: rgba(222, 228, 233, 0.4);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-40{
    color: rgba(244, 246, 249, 0.4);
  }

  .group:hover .hd\:group-hover\:text-white-40{
    color: rgba(255, 255, 255, 0.4);
  }

  .group:hover .hd\:group-hover\:text-red-40{
    color: rgba(211, 26, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:text-green-40{
    color: rgba(102, 187, 8, 0.4);
  }

  .group:hover .hd\:group-hover\:text-blue-40{
    color: rgba(31, 168, 226, 0.4);
  }

  .group:hover .hd\:group-hover\:text-orange-40{
    color: rgba(247, 148, 14, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-40{
    color: rgba(83, 15, 18, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-40{
    color: rgba(124, 23, 27, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-40{
    color: rgba(166, 30, 36, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-40{
    color: rgba(207, 38, 45, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-light-40{
    color: rgba(217, 81, 87, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-40{
    color: rgba(226, 125, 129, 0.4);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-40{
    color: rgba(236, 168, 171, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-40{
    color: rgba(62, 69, 37, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-40{
    color: rgba(94, 104, 55, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-40{
    color: rgba(125, 138, 74, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-40{
    color: rgba(156, 173, 92, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-40{
    color: rgba(176, 189, 125, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-40{
    color: rgba(196, 206, 157, 0.4);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-40{
    color: rgba(215, 222, 190, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-40{
    color: rgba(15, 47, 33, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-40{
    color: rgba(26, 71, 49, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-40{
    color: rgba(31, 157, 85, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-40{
    color: rgba(255, 197, 0, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-40{
    color: rgba(81, 216, 138, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-40{
    color: rgba(162, 245, 191, 0.4);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-40{
    color: rgba(227, 252, 236, 0.4);
  }

  .hd\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:bg-border-50:hover{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:bg-form-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:bg-form-active-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:bg-black-50:hover{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:bg-grey-darkest-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:bg-grey-darker-50:hover{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:bg-grey-dark-50:hover{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:bg-grey-50:hover{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:bg-grey-light-50:hover{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:bg-grey-lighter-50:hover{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:bg-grey-lightest-50:hover{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:bg-white-50:hover{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:bg-red-50:hover{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:bg-green-50:hover{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:bg-blue-50:hover{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:bg-orange-50:hover{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:bg-primary-darkest-50:hover{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:bg-primary-darker-50:hover{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:bg-primary-dark-50:hover{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:bg-primary-50:hover{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:bg-primary-light-50:hover{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:bg-primary-lighter-50:hover{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:bg-primary-lightest-50:hover{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:bg-secondary-darkest-50:hover{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:bg-secondary-darker-50:hover{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:bg-secondary-dark-50:hover{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:bg-secondary-50:hover{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:bg-secondary-light-50:hover{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:bg-secondary-lighter-50:hover{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:bg-secondary-lightest-50:hover{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:bg-tertiary-darkest-50:hover{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:bg-tertiary-darker-50:hover{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:bg-tertiary-dark-50:hover{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:bg-tertiary-50:hover{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:bg-tertiary-light-50:hover{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:bg-tertiary-lighter-50:hover{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:bg-tertiary-lightest-50:hover{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:bg-border-50:focus{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:bg-form-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:bg-form-active-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:bg-black-50:focus{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:bg-grey-darkest-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:bg-grey-darker-50:focus{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:bg-grey-dark-50:focus{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:bg-grey-50:focus{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:bg-grey-light-50:focus{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:bg-grey-lighter-50:focus{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:bg-grey-lightest-50:focus{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:bg-white-50:focus{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:bg-red-50:focus{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:bg-green-50:focus{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:bg-blue-50:focus{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:bg-orange-50:focus{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:bg-primary-darkest-50:focus{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:bg-primary-darker-50:focus{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:bg-primary-dark-50:focus{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:bg-primary-50:focus{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:bg-primary-light-50:focus{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:bg-primary-lighter-50:focus{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:bg-primary-lightest-50:focus{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:bg-secondary-darkest-50:focus{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:bg-secondary-darker-50:focus{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:bg-secondary-dark-50:focus{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:bg-secondary-50:focus{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:bg-secondary-light-50:focus{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:bg-secondary-lighter-50:focus{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:bg-secondary-lightest-50:focus{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:bg-tertiary-darkest-50:focus{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:bg-tertiary-darker-50:focus{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:bg-tertiary-dark-50:focus{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:bg-tertiary-50:focus{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:bg-tertiary-light-50:focus{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:bg-tertiary-lighter-50:focus{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:bg-tertiary-lightest-50:focus{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-border-50{
    background-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-form-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-form-active-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-black-50{
    background-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-50{
    background-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-50{
    background-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-50{
    background-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-50{
    background-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-50{
    background-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-50{
    background-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-white-50{
    background-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-red-50{
    background-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-green-50{
    background-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-blue-50{
    background-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-orange-50{
    background-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-50{
    background-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-50{
    background-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-50{
    background-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-50{
    background-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-50{
    background-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-50{
    background-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-50{
    background-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-50{
    background-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-50{
    background-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-50{
    background-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-50{
    background-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-50{
    background-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-50{
    background-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-50{
    background-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-50{
    background-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-50{
    background-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-50{
    background-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-50{
    background-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-50{
    background-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-50{
    background-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-50{
    background-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-border-50:hover{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:border-t-border-50:hover{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:border-r-border-50:hover{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:border-b-border-50:hover{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:border-l-border-50:hover{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:border-form-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-t-form-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-r-form-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-b-form-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-l-form-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-form-active-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-t-form-active-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-r-form-active-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-b-form-active-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-l-form-active-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-black-50:hover{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:border-t-black-50:hover{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:border-r-black-50:hover{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:border-b-black-50:hover{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:border-l-black-50:hover{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:border-grey-darkest-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-t-grey-darkest-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-r-grey-darkest-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-b-grey-darkest-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-l-grey-darkest-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-grey-darker-50:hover{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-t-grey-darker-50:hover{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-r-grey-darker-50:hover{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-b-grey-darker-50:hover{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-l-grey-darker-50:hover{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:border-grey-dark-50:hover{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-t-grey-dark-50:hover{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-r-grey-dark-50:hover{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-b-grey-dark-50:hover{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-l-grey-dark-50:hover{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:border-grey-50:hover{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-t-grey-50:hover{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-r-grey-50:hover{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-b-grey-50:hover{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-l-grey-50:hover{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:border-grey-light-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-t-grey-light-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-r-grey-light-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-b-grey-light-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-l-grey-light-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-grey-lighter-50:hover{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:border-t-grey-lighter-50:hover{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:border-r-grey-lighter-50:hover{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:border-b-grey-lighter-50:hover{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:border-l-grey-lighter-50:hover{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:border-grey-lightest-50:hover{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:border-t-grey-lightest-50:hover{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:border-r-grey-lightest-50:hover{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:border-b-grey-lightest-50:hover{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:border-l-grey-lightest-50:hover{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:border-white-50:hover{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:border-t-white-50:hover{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:border-r-white-50:hover{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:border-b-white-50:hover{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:border-l-white-50:hover{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:border-red-50:hover{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:border-t-red-50:hover{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:border-r-red-50:hover{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:border-b-red-50:hover{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:border-l-red-50:hover{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:border-green-50:hover{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:border-t-green-50:hover{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:border-r-green-50:hover{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:border-b-green-50:hover{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:border-l-green-50:hover{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:border-blue-50:hover{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:border-t-blue-50:hover{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:border-r-blue-50:hover{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:border-b-blue-50:hover{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:border-l-blue-50:hover{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:border-orange-50:hover{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:border-t-orange-50:hover{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:border-r-orange-50:hover{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:border-b-orange-50:hover{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:border-l-orange-50:hover{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:border-primary-darkest-50:hover{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:border-t-primary-darkest-50:hover{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:border-r-primary-darkest-50:hover{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:border-b-primary-darkest-50:hover{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:border-l-primary-darkest-50:hover{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:border-primary-darker-50:hover{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:border-t-primary-darker-50:hover{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:border-r-primary-darker-50:hover{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:border-b-primary-darker-50:hover{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:border-l-primary-darker-50:hover{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:border-primary-dark-50:hover{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:border-t-primary-dark-50:hover{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:border-r-primary-dark-50:hover{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:border-b-primary-dark-50:hover{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:border-l-primary-dark-50:hover{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:border-primary-50:hover{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:border-t-primary-50:hover{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:border-r-primary-50:hover{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:border-b-primary-50:hover{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:border-l-primary-50:hover{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:border-primary-light-50:hover{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:border-t-primary-light-50:hover{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:border-r-primary-light-50:hover{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:border-b-primary-light-50:hover{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:border-l-primary-light-50:hover{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:border-primary-lighter-50:hover{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:border-t-primary-lighter-50:hover{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:border-r-primary-lighter-50:hover{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:border-b-primary-lighter-50:hover{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:border-l-primary-lighter-50:hover{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:border-primary-lightest-50:hover{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:border-t-primary-lightest-50:hover{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:border-r-primary-lightest-50:hover{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:border-b-primary-lightest-50:hover{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:border-l-primary-lightest-50:hover{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:border-secondary-darkest-50:hover{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:border-t-secondary-darkest-50:hover{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:border-r-secondary-darkest-50:hover{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:border-b-secondary-darkest-50:hover{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:border-l-secondary-darkest-50:hover{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:border-secondary-darker-50:hover{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:border-t-secondary-darker-50:hover{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:border-r-secondary-darker-50:hover{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:border-b-secondary-darker-50:hover{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:border-l-secondary-darker-50:hover{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:border-secondary-dark-50:hover{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:border-t-secondary-dark-50:hover{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:border-r-secondary-dark-50:hover{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:border-b-secondary-dark-50:hover{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:border-l-secondary-dark-50:hover{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:border-secondary-50:hover{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:border-t-secondary-50:hover{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:border-r-secondary-50:hover{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:border-b-secondary-50:hover{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:border-l-secondary-50:hover{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:border-secondary-light-50:hover{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:border-t-secondary-light-50:hover{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:border-r-secondary-light-50:hover{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:border-b-secondary-light-50:hover{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:border-l-secondary-light-50:hover{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:border-secondary-lighter-50:hover{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:border-t-secondary-lighter-50:hover{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:border-r-secondary-lighter-50:hover{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:border-b-secondary-lighter-50:hover{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:border-l-secondary-lighter-50:hover{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:border-secondary-lightest-50:hover{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:border-t-secondary-lightest-50:hover{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:border-r-secondary-lightest-50:hover{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:border-b-secondary-lightest-50:hover{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:border-l-secondary-lightest-50:hover{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:border-tertiary-darkest-50:hover{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:border-t-tertiary-darkest-50:hover{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:border-r-tertiary-darkest-50:hover{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:border-b-tertiary-darkest-50:hover{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:border-l-tertiary-darkest-50:hover{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:border-tertiary-darker-50:hover{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:border-t-tertiary-darker-50:hover{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:border-r-tertiary-darker-50:hover{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:border-b-tertiary-darker-50:hover{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:border-l-tertiary-darker-50:hover{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:border-tertiary-dark-50:hover{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:border-t-tertiary-dark-50:hover{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:border-r-tertiary-dark-50:hover{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:border-b-tertiary-dark-50:hover{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:border-l-tertiary-dark-50:hover{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:border-tertiary-50:hover{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:border-t-tertiary-50:hover{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:border-r-tertiary-50:hover{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:border-b-tertiary-50:hover{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:border-l-tertiary-50:hover{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:border-tertiary-light-50:hover{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:border-t-tertiary-light-50:hover{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:border-r-tertiary-light-50:hover{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:border-b-tertiary-light-50:hover{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:border-l-tertiary-light-50:hover{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:border-tertiary-lighter-50:hover{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:border-t-tertiary-lighter-50:hover{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:border-r-tertiary-lighter-50:hover{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:border-b-tertiary-lighter-50:hover{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:border-l-tertiary-lighter-50:hover{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:border-tertiary-lightest-50:hover{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:border-t-tertiary-lightest-50:hover{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:border-r-tertiary-lightest-50:hover{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:border-b-tertiary-lightest-50:hover{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:border-l-tertiary-lightest-50:hover{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:border-default-50:hover{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-t-default-50:hover{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-r-default-50:hover{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-b-default-50:hover{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:border-l-default-50:hover{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-border-50:focus{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-t-border-50:focus{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-r-border-50:focus{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-b-border-50:focus{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-l-border-50:focus{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:border-form-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-t-form-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-r-form-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-b-form-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-l-form-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-form-active-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-t-form-active-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-r-form-active-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-b-form-active-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-l-form-active-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-black-50:focus{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-t-black-50:focus{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-r-black-50:focus{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-b-black-50:focus{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-l-black-50:focus{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:border-grey-darkest-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-t-grey-darkest-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-r-grey-darkest-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-b-grey-darkest-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-l-grey-darkest-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-grey-darker-50:focus{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-t-grey-darker-50:focus{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-r-grey-darker-50:focus{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-b-grey-darker-50:focus{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-l-grey-darker-50:focus{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:border-grey-dark-50:focus{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-t-grey-dark-50:focus{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-r-grey-dark-50:focus{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-b-grey-dark-50:focus{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-l-grey-dark-50:focus{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:border-grey-50:focus{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-t-grey-50:focus{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-r-grey-50:focus{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-b-grey-50:focus{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-l-grey-50:focus{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:border-grey-light-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-t-grey-light-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-r-grey-light-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-b-grey-light-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-l-grey-light-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-grey-lighter-50:focus{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-t-grey-lighter-50:focus{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-r-grey-lighter-50:focus{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-b-grey-lighter-50:focus{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-l-grey-lighter-50:focus{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:border-grey-lightest-50:focus{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-t-grey-lightest-50:focus{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-r-grey-lightest-50:focus{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-b-grey-lightest-50:focus{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-l-grey-lightest-50:focus{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:border-white-50:focus{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-t-white-50:focus{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-r-white-50:focus{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-b-white-50:focus{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-l-white-50:focus{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:border-red-50:focus{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-t-red-50:focus{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-r-red-50:focus{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-b-red-50:focus{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-l-red-50:focus{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:border-green-50:focus{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-t-green-50:focus{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-r-green-50:focus{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-b-green-50:focus{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-l-green-50:focus{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:border-blue-50:focus{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-t-blue-50:focus{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-r-blue-50:focus{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-b-blue-50:focus{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-l-blue-50:focus{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:border-orange-50:focus{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-t-orange-50:focus{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-r-orange-50:focus{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-b-orange-50:focus{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-l-orange-50:focus{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:border-primary-darkest-50:focus{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-t-primary-darkest-50:focus{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-r-primary-darkest-50:focus{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-b-primary-darkest-50:focus{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-l-primary-darkest-50:focus{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:border-primary-darker-50:focus{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-t-primary-darker-50:focus{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-r-primary-darker-50:focus{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-b-primary-darker-50:focus{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-l-primary-darker-50:focus{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:border-primary-dark-50:focus{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-t-primary-dark-50:focus{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-r-primary-dark-50:focus{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-b-primary-dark-50:focus{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-l-primary-dark-50:focus{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:border-primary-50:focus{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-t-primary-50:focus{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-r-primary-50:focus{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-b-primary-50:focus{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-l-primary-50:focus{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:border-primary-light-50:focus{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-t-primary-light-50:focus{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-r-primary-light-50:focus{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-b-primary-light-50:focus{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-l-primary-light-50:focus{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:border-primary-lighter-50:focus{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-t-primary-lighter-50:focus{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-r-primary-lighter-50:focus{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-b-primary-lighter-50:focus{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-l-primary-lighter-50:focus{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:border-primary-lightest-50:focus{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-t-primary-lightest-50:focus{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-r-primary-lightest-50:focus{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-b-primary-lightest-50:focus{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-l-primary-lightest-50:focus{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:border-secondary-darkest-50:focus{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-t-secondary-darkest-50:focus{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-r-secondary-darkest-50:focus{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-b-secondary-darkest-50:focus{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-l-secondary-darkest-50:focus{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:border-secondary-darker-50:focus{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-t-secondary-darker-50:focus{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-r-secondary-darker-50:focus{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-b-secondary-darker-50:focus{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-l-secondary-darker-50:focus{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:border-secondary-dark-50:focus{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-t-secondary-dark-50:focus{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-r-secondary-dark-50:focus{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-b-secondary-dark-50:focus{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-l-secondary-dark-50:focus{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:border-secondary-50:focus{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-t-secondary-50:focus{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-r-secondary-50:focus{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-b-secondary-50:focus{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-l-secondary-50:focus{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:border-secondary-light-50:focus{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-t-secondary-light-50:focus{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-r-secondary-light-50:focus{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-b-secondary-light-50:focus{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-l-secondary-light-50:focus{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:border-secondary-lighter-50:focus{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-t-secondary-lighter-50:focus{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-r-secondary-lighter-50:focus{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-b-secondary-lighter-50:focus{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-l-secondary-lighter-50:focus{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:border-secondary-lightest-50:focus{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-t-secondary-lightest-50:focus{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-r-secondary-lightest-50:focus{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-b-secondary-lightest-50:focus{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-l-secondary-lightest-50:focus{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:border-tertiary-darkest-50:focus{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-t-tertiary-darkest-50:focus{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-r-tertiary-darkest-50:focus{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-b-tertiary-darkest-50:focus{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-l-tertiary-darkest-50:focus{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:border-tertiary-darker-50:focus{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-t-tertiary-darker-50:focus{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-r-tertiary-darker-50:focus{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-b-tertiary-darker-50:focus{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-l-tertiary-darker-50:focus{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:border-tertiary-dark-50:focus{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-t-tertiary-dark-50:focus{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-r-tertiary-dark-50:focus{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-b-tertiary-dark-50:focus{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-l-tertiary-dark-50:focus{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:border-tertiary-50:focus{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-t-tertiary-50:focus{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-r-tertiary-50:focus{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-b-tertiary-50:focus{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-l-tertiary-50:focus{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:border-tertiary-light-50:focus{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-t-tertiary-light-50:focus{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-r-tertiary-light-50:focus{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-b-tertiary-light-50:focus{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-l-tertiary-light-50:focus{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:border-tertiary-lighter-50:focus{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-t-tertiary-lighter-50:focus{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-r-tertiary-lighter-50:focus{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-b-tertiary-lighter-50:focus{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-l-tertiary-lighter-50:focus{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:border-tertiary-lightest-50:focus{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-t-tertiary-lightest-50:focus{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-r-tertiary-lightest-50:focus{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-b-tertiary-lightest-50:focus{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-l-tertiary-lightest-50:focus{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:border-default-50:focus{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-t-default-50:focus{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-r-default-50:focus{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-b-default-50:focus{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:border-l-default-50:focus{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-border-50{
    border-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-border-50{
    border-top-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-border-50{
    border-right-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-border-50{
    border-bottom-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-border-50{
    border-left-color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:border-form-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-form-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-form-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-form-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-form-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-form-active-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-black-50{
    border-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-black-50{
    border-top-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-black-50{
    border-right-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-black-50{
    border-bottom-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-black-50{
    border-left-color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-50{
    border-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-50{
    border-top-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-50{
    border-right-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-50{
    border-bottom-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-50{
    border-left-color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-50{
    border-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-50{
    border-top-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-50{
    border-right-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-50{
    border-bottom-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-50{
    border-left-color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-50{
    border-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-50{
    border-top-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-50{
    border-right-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-50{
    border-bottom-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-50{
    border-left-color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-light-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-50{
    border-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-50{
    border-top-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-50{
    border-right-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-50{
    border-bottom-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-50{
    border-left-color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-50{
    border-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-50{
    border-top-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-50{
    border-right-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-50{
    border-bottom-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-50{
    border-left-color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:border-white-50{
    border-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-white-50{
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-white-50{
    border-right-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-white-50{
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-white-50{
    border-left-color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:border-red-50{
    border-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-red-50{
    border-top-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-red-50{
    border-right-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-red-50{
    border-bottom-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-red-50{
    border-left-color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-green-50{
    border-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-green-50{
    border-top-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-green-50{
    border-right-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-green-50{
    border-bottom-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-green-50{
    border-left-color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:border-blue-50{
    border-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-blue-50{
    border-top-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-blue-50{
    border-right-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-blue-50{
    border-bottom-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-blue-50{
    border-left-color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:border-orange-50{
    border-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-orange-50{
    border-top-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-orange-50{
    border-right-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-orange-50{
    border-bottom-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-orange-50{
    border-left-color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-50{
    border-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-50{
    border-top-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-50{
    border-right-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-50{
    border-bottom-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-50{
    border-left-color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-50{
    border-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-50{
    border-top-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-50{
    border-right-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-50{
    border-bottom-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-50{
    border-left-color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-50{
    border-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-50{
    border-top-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-50{
    border-right-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-50{
    border-bottom-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-50{
    border-left-color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-50{
    border-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-50{
    border-top-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-50{
    border-right-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-50{
    border-bottom-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-50{
    border-left-color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-light-50{
    border-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-50{
    border-top-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-50{
    border-right-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-50{
    border-bottom-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-50{
    border-left-color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-50{
    border-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-50{
    border-top-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-50{
    border-right-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-50{
    border-bottom-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-50{
    border-left-color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-50{
    border-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-50{
    border-top-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-50{
    border-right-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-50{
    border-bottom-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-50{
    border-left-color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-50{
    border-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-50{
    border-top-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-50{
    border-right-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-50{
    border-bottom-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-50{
    border-left-color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-50{
    border-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-50{
    border-top-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-50{
    border-right-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-50{
    border-bottom-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-50{
    border-left-color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-50{
    border-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-50{
    border-top-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-50{
    border-right-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-50{
    border-bottom-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-50{
    border-left-color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-50{
    border-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-50{
    border-top-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-50{
    border-right-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-50{
    border-bottom-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-50{
    border-left-color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-50{
    border-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-50{
    border-top-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-50{
    border-right-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-50{
    border-bottom-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-50{
    border-left-color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-50{
    border-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-50{
    border-top-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-50{
    border-right-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-50{
    border-bottom-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-50{
    border-left-color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-50{
    border-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-50{
    border-top-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-50{
    border-right-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-50{
    border-bottom-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-50{
    border-left-color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-50{
    border-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-50{
    border-top-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-50{
    border-right-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-50{
    border-bottom-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-50{
    border-left-color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-50{
    border-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-50{
    border-top-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-50{
    border-right-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-50{
    border-bottom-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-50{
    border-left-color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-50{
    border-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-50{
    border-top-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-50{
    border-right-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-50{
    border-bottom-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-50{
    border-left-color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-50{
    border-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-50{
    border-top-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-50{
    border-right-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-50{
    border-bottom-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-50{
    border-left-color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-50{
    border-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-50{
    border-top-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-50{
    border-right-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-50{
    border-bottom-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-50{
    border-left-color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-50{
    border-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-50{
    border-top-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-50{
    border-right-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-50{
    border-bottom-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-50{
    border-left-color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-50{
    border-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-50{
    border-top-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-50{
    border-right-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-50{
    border-bottom-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-50{
    border-left-color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:border-default-50{
    border-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-t-default-50{
    border-top-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-r-default-50{
    border-right-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-b-default-50{
    border-bottom-color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:border-l-default-50{
    border-left-color: rgba(179, 188, 197, 0.5);
  }

  .hd\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .hd\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .hd\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .hd\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .hd\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .hd\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .hd\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .hd\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .hd\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .hd\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .hd\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .hd\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .hd\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .hd\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .hd\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .hd\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .hd\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .hd\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .hd\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .hd\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .hd\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .hd\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .hd\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .hd\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .hd\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .hd\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .hd\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .hd\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .hd\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .hd\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .hd\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .hd\:hover\:text-border-50:hover{
    color: rgba(230, 235, 245, 0.5);
  }

  .hd\:hover\:text-form-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:text-form-active-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:text-black-50:hover{
    color: rgba(33, 37, 41, 0.5);
  }

  .hd\:hover\:text-grey-darkest-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:text-grey-darker-50:hover{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:hover\:text-grey-dark-50:hover{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:hover\:text-grey-50:hover{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:hover\:text-grey-light-50:hover{
    color: rgba(179, 188, 197, 0.5);
  }

  .hd\:hover\:text-grey-lighter-50:hover{
    color: rgba(222, 228, 233, 0.5);
  }

  .hd\:hover\:text-grey-lightest-50:hover{
    color: rgba(244, 246, 249, 0.5);
  }

  .hd\:hover\:text-white-50:hover{
    color: rgba(255, 255, 255, 0.5);
  }

  .hd\:hover\:text-red-50:hover{
    color: rgba(211, 26, 8, 0.5);
  }

  .hd\:hover\:text-green-50:hover{
    color: rgba(102, 187, 8, 0.5);
  }

  .hd\:hover\:text-blue-50:hover{
    color: rgba(31, 168, 226, 0.5);
  }

  .hd\:hover\:text-orange-50:hover{
    color: rgba(247, 148, 14, 0.5);
  }

  .hd\:hover\:text-primary-darkest-50:hover{
    color: rgba(83, 15, 18, 0.5);
  }

  .hd\:hover\:text-primary-darker-50:hover{
    color: rgba(124, 23, 27, 0.5);
  }

  .hd\:hover\:text-primary-dark-50:hover{
    color: rgba(166, 30, 36, 0.5);
  }

  .hd\:hover\:text-primary-50:hover{
    color: rgba(207, 38, 45, 0.5);
  }

  .hd\:hover\:text-primary-light-50:hover{
    color: rgba(217, 81, 87, 0.5);
  }

  .hd\:hover\:text-primary-lighter-50:hover{
    color: rgba(226, 125, 129, 0.5);
  }

  .hd\:hover\:text-primary-lightest-50:hover{
    color: rgba(236, 168, 171, 0.5);
  }

  .hd\:hover\:text-secondary-darkest-50:hover{
    color: rgba(62, 69, 37, 0.5);
  }

  .hd\:hover\:text-secondary-darker-50:hover{
    color: rgba(94, 104, 55, 0.5);
  }

  .hd\:hover\:text-secondary-dark-50:hover{
    color: rgba(125, 138, 74, 0.5);
  }

  .hd\:hover\:text-secondary-50:hover{
    color: rgba(156, 173, 92, 0.5);
  }

  .hd\:hover\:text-secondary-light-50:hover{
    color: rgba(176, 189, 125, 0.5);
  }

  .hd\:hover\:text-secondary-lighter-50:hover{
    color: rgba(196, 206, 157, 0.5);
  }

  .hd\:hover\:text-secondary-lightest-50:hover{
    color: rgba(215, 222, 190, 0.5);
  }

  .hd\:hover\:text-tertiary-darkest-50:hover{
    color: rgba(15, 47, 33, 0.5);
  }

  .hd\:hover\:text-tertiary-darker-50:hover{
    color: rgba(26, 71, 49, 0.5);
  }

  .hd\:hover\:text-tertiary-dark-50:hover{
    color: rgba(31, 157, 85, 0.5);
  }

  .hd\:hover\:text-tertiary-50:hover{
    color: rgba(255, 197, 0, 0.5);
  }

  .hd\:hover\:text-tertiary-light-50:hover{
    color: rgba(81, 216, 138, 0.5);
  }

  .hd\:hover\:text-tertiary-lighter-50:hover{
    color: rgba(162, 245, 191, 0.5);
  }

  .hd\:hover\:text-tertiary-lightest-50:hover{
    color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .hd\:focus\:text-border-50:focus{
    color: rgba(230, 235, 245, 0.5);
  }

  .hd\:focus\:text-form-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:text-form-active-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:text-black-50:focus{
    color: rgba(33, 37, 41, 0.5);
  }

  .hd\:focus\:text-grey-darkest-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:text-grey-darker-50:focus{
    color: rgba(154, 165, 192, 0.5);
  }

  .hd\:focus\:text-grey-dark-50:focus{
    color: rgba(66, 80, 92, 0.5);
  }

  .hd\:focus\:text-grey-50:focus{
    color: rgba(121, 130, 139, 0.5);
  }

  .hd\:focus\:text-grey-light-50:focus{
    color: rgba(179, 188, 197, 0.5);
  }

  .hd\:focus\:text-grey-lighter-50:focus{
    color: rgba(222, 228, 233, 0.5);
  }

  .hd\:focus\:text-grey-lightest-50:focus{
    color: rgba(244, 246, 249, 0.5);
  }

  .hd\:focus\:text-white-50:focus{
    color: rgba(255, 255, 255, 0.5);
  }

  .hd\:focus\:text-red-50:focus{
    color: rgba(211, 26, 8, 0.5);
  }

  .hd\:focus\:text-green-50:focus{
    color: rgba(102, 187, 8, 0.5);
  }

  .hd\:focus\:text-blue-50:focus{
    color: rgba(31, 168, 226, 0.5);
  }

  .hd\:focus\:text-orange-50:focus{
    color: rgba(247, 148, 14, 0.5);
  }

  .hd\:focus\:text-primary-darkest-50:focus{
    color: rgba(83, 15, 18, 0.5);
  }

  .hd\:focus\:text-primary-darker-50:focus{
    color: rgba(124, 23, 27, 0.5);
  }

  .hd\:focus\:text-primary-dark-50:focus{
    color: rgba(166, 30, 36, 0.5);
  }

  .hd\:focus\:text-primary-50:focus{
    color: rgba(207, 38, 45, 0.5);
  }

  .hd\:focus\:text-primary-light-50:focus{
    color: rgba(217, 81, 87, 0.5);
  }

  .hd\:focus\:text-primary-lighter-50:focus{
    color: rgba(226, 125, 129, 0.5);
  }

  .hd\:focus\:text-primary-lightest-50:focus{
    color: rgba(236, 168, 171, 0.5);
  }

  .hd\:focus\:text-secondary-darkest-50:focus{
    color: rgba(62, 69, 37, 0.5);
  }

  .hd\:focus\:text-secondary-darker-50:focus{
    color: rgba(94, 104, 55, 0.5);
  }

  .hd\:focus\:text-secondary-dark-50:focus{
    color: rgba(125, 138, 74, 0.5);
  }

  .hd\:focus\:text-secondary-50:focus{
    color: rgba(156, 173, 92, 0.5);
  }

  .hd\:focus\:text-secondary-light-50:focus{
    color: rgba(176, 189, 125, 0.5);
  }

  .hd\:focus\:text-secondary-lighter-50:focus{
    color: rgba(196, 206, 157, 0.5);
  }

  .hd\:focus\:text-secondary-lightest-50:focus{
    color: rgba(215, 222, 190, 0.5);
  }

  .hd\:focus\:text-tertiary-darkest-50:focus{
    color: rgba(15, 47, 33, 0.5);
  }

  .hd\:focus\:text-tertiary-darker-50:focus{
    color: rgba(26, 71, 49, 0.5);
  }

  .hd\:focus\:text-tertiary-dark-50:focus{
    color: rgba(31, 157, 85, 0.5);
  }

  .hd\:focus\:text-tertiary-50:focus{
    color: rgba(255, 197, 0, 0.5);
  }

  .hd\:focus\:text-tertiary-light-50:focus{
    color: rgba(81, 216, 138, 0.5);
  }

  .hd\:focus\:text-tertiary-lighter-50:focus{
    color: rgba(162, 245, 191, 0.5);
  }

  .hd\:focus\:text-tertiary-lightest-50:focus{
    color: rgba(227, 252, 236, 0.5);
  }

  .group:hover .hd\:group-hover\:text-border-50{
    color: rgba(230, 235, 245, 0.5);
  }

  .group:hover .hd\:group-hover\:text-form-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:text-form-active-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:text-black-50{
    color: rgba(33, 37, 41, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-50{
    color: rgba(154, 165, 192, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-50{
    color: rgba(66, 80, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-50{
    color: rgba(121, 130, 139, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-light-50{
    color: rgba(179, 188, 197, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-50{
    color: rgba(222, 228, 233, 0.5);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-50{
    color: rgba(244, 246, 249, 0.5);
  }

  .group:hover .hd\:group-hover\:text-white-50{
    color: rgba(255, 255, 255, 0.5);
  }

  .group:hover .hd\:group-hover\:text-red-50{
    color: rgba(211, 26, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:text-green-50{
    color: rgba(102, 187, 8, 0.5);
  }

  .group:hover .hd\:group-hover\:text-blue-50{
    color: rgba(31, 168, 226, 0.5);
  }

  .group:hover .hd\:group-hover\:text-orange-50{
    color: rgba(247, 148, 14, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-50{
    color: rgba(83, 15, 18, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-50{
    color: rgba(124, 23, 27, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-50{
    color: rgba(166, 30, 36, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-50{
    color: rgba(207, 38, 45, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-light-50{
    color: rgba(217, 81, 87, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-50{
    color: rgba(226, 125, 129, 0.5);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-50{
    color: rgba(236, 168, 171, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-50{
    color: rgba(62, 69, 37, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-50{
    color: rgba(94, 104, 55, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-50{
    color: rgba(125, 138, 74, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-50{
    color: rgba(156, 173, 92, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-50{
    color: rgba(176, 189, 125, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-50{
    color: rgba(196, 206, 157, 0.5);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-50{
    color: rgba(215, 222, 190, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-50{
    color: rgba(15, 47, 33, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-50{
    color: rgba(26, 71, 49, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-50{
    color: rgba(31, 157, 85, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-50{
    color: rgba(255, 197, 0, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-50{
    color: rgba(81, 216, 138, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-50{
    color: rgba(162, 245, 191, 0.5);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-50{
    color: rgba(227, 252, 236, 0.5);
  }

  .hd\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:bg-border-70:hover{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:bg-form-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:bg-form-active-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:bg-black-70:hover{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:bg-grey-darkest-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:bg-grey-darker-70:hover{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:bg-grey-dark-70:hover{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:bg-grey-70:hover{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:bg-grey-light-70:hover{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:bg-grey-lighter-70:hover{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:bg-grey-lightest-70:hover{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:bg-white-70:hover{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:bg-red-70:hover{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:bg-green-70:hover{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:bg-blue-70:hover{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:bg-orange-70:hover{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:bg-primary-darkest-70:hover{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:bg-primary-darker-70:hover{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:bg-primary-dark-70:hover{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:bg-primary-70:hover{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:bg-primary-light-70:hover{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:bg-primary-lighter-70:hover{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:bg-primary-lightest-70:hover{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:bg-secondary-darkest-70:hover{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:bg-secondary-darker-70:hover{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:bg-secondary-dark-70:hover{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:bg-secondary-70:hover{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:bg-secondary-light-70:hover{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:bg-secondary-lighter-70:hover{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:bg-secondary-lightest-70:hover{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:bg-tertiary-darkest-70:hover{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:bg-tertiary-darker-70:hover{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:bg-tertiary-dark-70:hover{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:bg-tertiary-70:hover{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:bg-tertiary-light-70:hover{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:bg-tertiary-lighter-70:hover{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:bg-tertiary-lightest-70:hover{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:bg-border-70:focus{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:bg-form-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:bg-form-active-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:bg-black-70:focus{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:bg-grey-darkest-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:bg-grey-darker-70:focus{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:bg-grey-dark-70:focus{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:bg-grey-70:focus{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:bg-grey-light-70:focus{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:bg-grey-lighter-70:focus{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:bg-grey-lightest-70:focus{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:bg-white-70:focus{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:bg-red-70:focus{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:bg-green-70:focus{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:bg-blue-70:focus{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:bg-orange-70:focus{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:bg-primary-darkest-70:focus{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:bg-primary-darker-70:focus{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:bg-primary-dark-70:focus{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:bg-primary-70:focus{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:bg-primary-light-70:focus{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:bg-primary-lighter-70:focus{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:bg-primary-lightest-70:focus{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:bg-secondary-darkest-70:focus{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:bg-secondary-darker-70:focus{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:bg-secondary-dark-70:focus{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:bg-secondary-70:focus{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:bg-secondary-light-70:focus{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:bg-secondary-lighter-70:focus{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:bg-secondary-lightest-70:focus{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:bg-tertiary-darkest-70:focus{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:bg-tertiary-darker-70:focus{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:bg-tertiary-dark-70:focus{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:bg-tertiary-70:focus{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:bg-tertiary-light-70:focus{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:bg-tertiary-lighter-70:focus{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:bg-tertiary-lightest-70:focus{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-border-70{
    background-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-form-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-form-active-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-black-70{
    background-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-70{
    background-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-70{
    background-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-70{
    background-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-70{
    background-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-70{
    background-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-70{
    background-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-white-70{
    background-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-red-70{
    background-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-green-70{
    background-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-blue-70{
    background-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-orange-70{
    background-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-70{
    background-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-70{
    background-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-70{
    background-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-70{
    background-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-70{
    background-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-70{
    background-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-70{
    background-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-70{
    background-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-70{
    background-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-70{
    background-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-70{
    background-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-70{
    background-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-70{
    background-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-70{
    background-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-70{
    background-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-70{
    background-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-70{
    background-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-70{
    background-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-70{
    background-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-70{
    background-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-70{
    background-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-border-70:hover{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:border-t-border-70:hover{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:border-r-border-70:hover{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:border-b-border-70:hover{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:border-l-border-70:hover{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:border-form-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-t-form-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-r-form-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-b-form-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-l-form-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-form-active-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-t-form-active-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-r-form-active-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-b-form-active-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-l-form-active-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-black-70:hover{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:border-t-black-70:hover{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:border-r-black-70:hover{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:border-b-black-70:hover{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:border-l-black-70:hover{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:border-grey-darkest-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-t-grey-darkest-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-r-grey-darkest-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-b-grey-darkest-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-l-grey-darkest-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-grey-darker-70:hover{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-t-grey-darker-70:hover{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-r-grey-darker-70:hover{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-b-grey-darker-70:hover{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-l-grey-darker-70:hover{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:border-grey-dark-70:hover{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-t-grey-dark-70:hover{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-r-grey-dark-70:hover{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-b-grey-dark-70:hover{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-l-grey-dark-70:hover{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:border-grey-70:hover{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-t-grey-70:hover{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-r-grey-70:hover{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-b-grey-70:hover{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-l-grey-70:hover{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:border-grey-light-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-t-grey-light-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-r-grey-light-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-b-grey-light-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-l-grey-light-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-grey-lighter-70:hover{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:border-t-grey-lighter-70:hover{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:border-r-grey-lighter-70:hover{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:border-b-grey-lighter-70:hover{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:border-l-grey-lighter-70:hover{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:border-grey-lightest-70:hover{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:border-t-grey-lightest-70:hover{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:border-r-grey-lightest-70:hover{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:border-b-grey-lightest-70:hover{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:border-l-grey-lightest-70:hover{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:border-white-70:hover{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:border-t-white-70:hover{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:border-r-white-70:hover{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:border-b-white-70:hover{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:border-l-white-70:hover{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:border-red-70:hover{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:border-t-red-70:hover{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:border-r-red-70:hover{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:border-b-red-70:hover{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:border-l-red-70:hover{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:border-green-70:hover{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:border-t-green-70:hover{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:border-r-green-70:hover{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:border-b-green-70:hover{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:border-l-green-70:hover{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:border-blue-70:hover{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:border-t-blue-70:hover{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:border-r-blue-70:hover{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:border-b-blue-70:hover{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:border-l-blue-70:hover{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:border-orange-70:hover{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:border-t-orange-70:hover{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:border-r-orange-70:hover{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:border-b-orange-70:hover{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:border-l-orange-70:hover{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:border-primary-darkest-70:hover{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:border-t-primary-darkest-70:hover{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:border-r-primary-darkest-70:hover{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:border-b-primary-darkest-70:hover{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:border-l-primary-darkest-70:hover{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:border-primary-darker-70:hover{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:border-t-primary-darker-70:hover{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:border-r-primary-darker-70:hover{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:border-b-primary-darker-70:hover{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:border-l-primary-darker-70:hover{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:border-primary-dark-70:hover{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:border-t-primary-dark-70:hover{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:border-r-primary-dark-70:hover{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:border-b-primary-dark-70:hover{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:border-l-primary-dark-70:hover{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:border-primary-70:hover{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:border-t-primary-70:hover{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:border-r-primary-70:hover{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:border-b-primary-70:hover{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:border-l-primary-70:hover{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:border-primary-light-70:hover{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:border-t-primary-light-70:hover{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:border-r-primary-light-70:hover{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:border-b-primary-light-70:hover{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:border-l-primary-light-70:hover{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:border-primary-lighter-70:hover{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:border-t-primary-lighter-70:hover{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:border-r-primary-lighter-70:hover{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:border-b-primary-lighter-70:hover{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:border-l-primary-lighter-70:hover{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:border-primary-lightest-70:hover{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:border-t-primary-lightest-70:hover{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:border-r-primary-lightest-70:hover{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:border-b-primary-lightest-70:hover{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:border-l-primary-lightest-70:hover{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:border-secondary-darkest-70:hover{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:border-t-secondary-darkest-70:hover{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:border-r-secondary-darkest-70:hover{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:border-b-secondary-darkest-70:hover{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:border-l-secondary-darkest-70:hover{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:border-secondary-darker-70:hover{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:border-t-secondary-darker-70:hover{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:border-r-secondary-darker-70:hover{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:border-b-secondary-darker-70:hover{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:border-l-secondary-darker-70:hover{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:border-secondary-dark-70:hover{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:border-t-secondary-dark-70:hover{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:border-r-secondary-dark-70:hover{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:border-b-secondary-dark-70:hover{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:border-l-secondary-dark-70:hover{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:border-secondary-70:hover{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:border-t-secondary-70:hover{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:border-r-secondary-70:hover{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:border-b-secondary-70:hover{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:border-l-secondary-70:hover{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:border-secondary-light-70:hover{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:border-t-secondary-light-70:hover{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:border-r-secondary-light-70:hover{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:border-b-secondary-light-70:hover{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:border-l-secondary-light-70:hover{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:border-secondary-lighter-70:hover{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:border-t-secondary-lighter-70:hover{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:border-r-secondary-lighter-70:hover{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:border-b-secondary-lighter-70:hover{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:border-l-secondary-lighter-70:hover{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:border-secondary-lightest-70:hover{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:border-t-secondary-lightest-70:hover{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:border-r-secondary-lightest-70:hover{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:border-b-secondary-lightest-70:hover{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:border-l-secondary-lightest-70:hover{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:border-tertiary-darkest-70:hover{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:border-t-tertiary-darkest-70:hover{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:border-r-tertiary-darkest-70:hover{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:border-b-tertiary-darkest-70:hover{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:border-l-tertiary-darkest-70:hover{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:border-tertiary-darker-70:hover{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:border-t-tertiary-darker-70:hover{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:border-r-tertiary-darker-70:hover{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:border-b-tertiary-darker-70:hover{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:border-l-tertiary-darker-70:hover{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:border-tertiary-dark-70:hover{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:border-t-tertiary-dark-70:hover{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:border-r-tertiary-dark-70:hover{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:border-b-tertiary-dark-70:hover{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:border-l-tertiary-dark-70:hover{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:border-tertiary-70:hover{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:border-t-tertiary-70:hover{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:border-r-tertiary-70:hover{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:border-b-tertiary-70:hover{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:border-l-tertiary-70:hover{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:border-tertiary-light-70:hover{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:border-t-tertiary-light-70:hover{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:border-r-tertiary-light-70:hover{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:border-b-tertiary-light-70:hover{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:border-l-tertiary-light-70:hover{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:border-tertiary-lighter-70:hover{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:border-t-tertiary-lighter-70:hover{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:border-r-tertiary-lighter-70:hover{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:border-b-tertiary-lighter-70:hover{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:border-l-tertiary-lighter-70:hover{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:border-tertiary-lightest-70:hover{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:border-t-tertiary-lightest-70:hover{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:border-r-tertiary-lightest-70:hover{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:border-b-tertiary-lightest-70:hover{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:border-l-tertiary-lightest-70:hover{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:border-default-70:hover{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-t-default-70:hover{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-r-default-70:hover{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-b-default-70:hover{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:border-l-default-70:hover{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-border-70:focus{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-t-border-70:focus{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-r-border-70:focus{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-b-border-70:focus{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-l-border-70:focus{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:border-form-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-t-form-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-r-form-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-b-form-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-l-form-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-form-active-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-t-form-active-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-r-form-active-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-b-form-active-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-l-form-active-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-black-70:focus{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-t-black-70:focus{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-r-black-70:focus{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-b-black-70:focus{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-l-black-70:focus{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:border-grey-darkest-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-t-grey-darkest-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-r-grey-darkest-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-b-grey-darkest-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-l-grey-darkest-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-grey-darker-70:focus{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-t-grey-darker-70:focus{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-r-grey-darker-70:focus{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-b-grey-darker-70:focus{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-l-grey-darker-70:focus{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:border-grey-dark-70:focus{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-t-grey-dark-70:focus{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-r-grey-dark-70:focus{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-b-grey-dark-70:focus{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-l-grey-dark-70:focus{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:border-grey-70:focus{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-t-grey-70:focus{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-r-grey-70:focus{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-b-grey-70:focus{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-l-grey-70:focus{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:border-grey-light-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-t-grey-light-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-r-grey-light-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-b-grey-light-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-l-grey-light-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-grey-lighter-70:focus{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-t-grey-lighter-70:focus{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-r-grey-lighter-70:focus{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-b-grey-lighter-70:focus{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-l-grey-lighter-70:focus{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:border-grey-lightest-70:focus{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-t-grey-lightest-70:focus{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-r-grey-lightest-70:focus{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-b-grey-lightest-70:focus{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-l-grey-lightest-70:focus{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:border-white-70:focus{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-t-white-70:focus{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-r-white-70:focus{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-b-white-70:focus{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-l-white-70:focus{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:border-red-70:focus{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-t-red-70:focus{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-r-red-70:focus{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-b-red-70:focus{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-l-red-70:focus{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:border-green-70:focus{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-t-green-70:focus{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-r-green-70:focus{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-b-green-70:focus{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-l-green-70:focus{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:border-blue-70:focus{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-t-blue-70:focus{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-r-blue-70:focus{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-b-blue-70:focus{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-l-blue-70:focus{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:border-orange-70:focus{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-t-orange-70:focus{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-r-orange-70:focus{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-b-orange-70:focus{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-l-orange-70:focus{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:border-primary-darkest-70:focus{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-t-primary-darkest-70:focus{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-r-primary-darkest-70:focus{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-b-primary-darkest-70:focus{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-l-primary-darkest-70:focus{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:border-primary-darker-70:focus{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-t-primary-darker-70:focus{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-r-primary-darker-70:focus{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-b-primary-darker-70:focus{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-l-primary-darker-70:focus{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:border-primary-dark-70:focus{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-t-primary-dark-70:focus{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-r-primary-dark-70:focus{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-b-primary-dark-70:focus{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-l-primary-dark-70:focus{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:border-primary-70:focus{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-t-primary-70:focus{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-r-primary-70:focus{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-b-primary-70:focus{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-l-primary-70:focus{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:border-primary-light-70:focus{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-t-primary-light-70:focus{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-r-primary-light-70:focus{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-b-primary-light-70:focus{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-l-primary-light-70:focus{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:border-primary-lighter-70:focus{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-t-primary-lighter-70:focus{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-r-primary-lighter-70:focus{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-b-primary-lighter-70:focus{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-l-primary-lighter-70:focus{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:border-primary-lightest-70:focus{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-t-primary-lightest-70:focus{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-r-primary-lightest-70:focus{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-b-primary-lightest-70:focus{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-l-primary-lightest-70:focus{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:border-secondary-darkest-70:focus{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-t-secondary-darkest-70:focus{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-r-secondary-darkest-70:focus{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-b-secondary-darkest-70:focus{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-l-secondary-darkest-70:focus{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:border-secondary-darker-70:focus{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-t-secondary-darker-70:focus{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-r-secondary-darker-70:focus{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-b-secondary-darker-70:focus{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-l-secondary-darker-70:focus{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:border-secondary-dark-70:focus{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-t-secondary-dark-70:focus{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-r-secondary-dark-70:focus{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-b-secondary-dark-70:focus{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-l-secondary-dark-70:focus{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:border-secondary-70:focus{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-t-secondary-70:focus{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-r-secondary-70:focus{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-b-secondary-70:focus{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-l-secondary-70:focus{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:border-secondary-light-70:focus{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-t-secondary-light-70:focus{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-r-secondary-light-70:focus{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-b-secondary-light-70:focus{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-l-secondary-light-70:focus{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:border-secondary-lighter-70:focus{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-t-secondary-lighter-70:focus{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-r-secondary-lighter-70:focus{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-b-secondary-lighter-70:focus{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-l-secondary-lighter-70:focus{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:border-secondary-lightest-70:focus{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-t-secondary-lightest-70:focus{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-r-secondary-lightest-70:focus{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-b-secondary-lightest-70:focus{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-l-secondary-lightest-70:focus{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:border-tertiary-darkest-70:focus{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-t-tertiary-darkest-70:focus{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-r-tertiary-darkest-70:focus{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-b-tertiary-darkest-70:focus{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-l-tertiary-darkest-70:focus{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:border-tertiary-darker-70:focus{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-t-tertiary-darker-70:focus{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-r-tertiary-darker-70:focus{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-b-tertiary-darker-70:focus{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-l-tertiary-darker-70:focus{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:border-tertiary-dark-70:focus{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-t-tertiary-dark-70:focus{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-r-tertiary-dark-70:focus{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-b-tertiary-dark-70:focus{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-l-tertiary-dark-70:focus{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:border-tertiary-70:focus{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-t-tertiary-70:focus{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-r-tertiary-70:focus{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-b-tertiary-70:focus{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-l-tertiary-70:focus{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:border-tertiary-light-70:focus{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-t-tertiary-light-70:focus{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-r-tertiary-light-70:focus{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-b-tertiary-light-70:focus{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-l-tertiary-light-70:focus{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:border-tertiary-lighter-70:focus{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-t-tertiary-lighter-70:focus{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-r-tertiary-lighter-70:focus{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-b-tertiary-lighter-70:focus{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-l-tertiary-lighter-70:focus{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:border-tertiary-lightest-70:focus{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-t-tertiary-lightest-70:focus{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-r-tertiary-lightest-70:focus{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-b-tertiary-lightest-70:focus{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-l-tertiary-lightest-70:focus{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:border-default-70:focus{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-t-default-70:focus{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-r-default-70:focus{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-b-default-70:focus{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:border-l-default-70:focus{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-border-70{
    border-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-border-70{
    border-top-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-border-70{
    border-right-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-border-70{
    border-bottom-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-border-70{
    border-left-color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:border-form-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-form-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-form-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-form-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-form-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-form-active-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-black-70{
    border-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-black-70{
    border-top-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-black-70{
    border-right-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-black-70{
    border-bottom-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-black-70{
    border-left-color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-70{
    border-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-70{
    border-top-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-70{
    border-right-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-70{
    border-bottom-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-70{
    border-left-color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-70{
    border-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-70{
    border-top-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-70{
    border-right-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-70{
    border-bottom-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-70{
    border-left-color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-70{
    border-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-70{
    border-top-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-70{
    border-right-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-70{
    border-bottom-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-70{
    border-left-color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-light-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-70{
    border-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-70{
    border-top-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-70{
    border-right-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-70{
    border-bottom-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-70{
    border-left-color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-70{
    border-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-70{
    border-top-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-70{
    border-right-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-70{
    border-bottom-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-70{
    border-left-color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:border-white-70{
    border-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-white-70{
    border-top-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-white-70{
    border-right-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-white-70{
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-white-70{
    border-left-color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:border-red-70{
    border-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-red-70{
    border-top-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-red-70{
    border-right-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-red-70{
    border-bottom-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-red-70{
    border-left-color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-green-70{
    border-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-green-70{
    border-top-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-green-70{
    border-right-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-green-70{
    border-bottom-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-green-70{
    border-left-color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:border-blue-70{
    border-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-blue-70{
    border-top-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-blue-70{
    border-right-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-blue-70{
    border-bottom-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-blue-70{
    border-left-color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:border-orange-70{
    border-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-orange-70{
    border-top-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-orange-70{
    border-right-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-orange-70{
    border-bottom-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-orange-70{
    border-left-color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-70{
    border-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-70{
    border-top-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-70{
    border-right-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-70{
    border-bottom-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-70{
    border-left-color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-70{
    border-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-70{
    border-top-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-70{
    border-right-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-70{
    border-bottom-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-70{
    border-left-color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-70{
    border-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-70{
    border-top-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-70{
    border-right-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-70{
    border-bottom-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-70{
    border-left-color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-70{
    border-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-70{
    border-top-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-70{
    border-right-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-70{
    border-bottom-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-70{
    border-left-color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-light-70{
    border-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-70{
    border-top-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-70{
    border-right-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-70{
    border-bottom-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-70{
    border-left-color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-70{
    border-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-70{
    border-top-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-70{
    border-right-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-70{
    border-bottom-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-70{
    border-left-color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-70{
    border-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-70{
    border-top-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-70{
    border-right-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-70{
    border-bottom-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-70{
    border-left-color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-70{
    border-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-70{
    border-top-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-70{
    border-right-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-70{
    border-bottom-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-70{
    border-left-color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-70{
    border-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-70{
    border-top-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-70{
    border-right-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-70{
    border-bottom-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-70{
    border-left-color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-70{
    border-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-70{
    border-top-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-70{
    border-right-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-70{
    border-bottom-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-70{
    border-left-color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-70{
    border-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-70{
    border-top-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-70{
    border-right-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-70{
    border-bottom-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-70{
    border-left-color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-70{
    border-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-70{
    border-top-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-70{
    border-right-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-70{
    border-bottom-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-70{
    border-left-color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-70{
    border-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-70{
    border-top-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-70{
    border-right-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-70{
    border-bottom-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-70{
    border-left-color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-70{
    border-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-70{
    border-top-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-70{
    border-right-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-70{
    border-bottom-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-70{
    border-left-color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-70{
    border-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-70{
    border-top-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-70{
    border-right-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-70{
    border-bottom-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-70{
    border-left-color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-70{
    border-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-70{
    border-top-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-70{
    border-right-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-70{
    border-bottom-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-70{
    border-left-color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-70{
    border-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-70{
    border-top-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-70{
    border-right-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-70{
    border-bottom-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-70{
    border-left-color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-70{
    border-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-70{
    border-top-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-70{
    border-right-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-70{
    border-bottom-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-70{
    border-left-color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-70{
    border-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-70{
    border-top-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-70{
    border-right-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-70{
    border-bottom-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-70{
    border-left-color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-70{
    border-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-70{
    border-top-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-70{
    border-right-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-70{
    border-bottom-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-70{
    border-left-color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-70{
    border-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-70{
    border-top-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-70{
    border-right-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-70{
    border-bottom-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-70{
    border-left-color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:border-default-70{
    border-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-t-default-70{
    border-top-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-r-default-70{
    border-right-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-b-default-70{
    border-bottom-color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:border-l-default-70{
    border-left-color: rgba(179, 188, 197, 0.7);
  }

  .hd\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .hd\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .hd\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .hd\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .hd\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .hd\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .hd\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .hd\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .hd\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .hd\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .hd\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .hd\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .hd\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .hd\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .hd\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .hd\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .hd\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .hd\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .hd\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .hd\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .hd\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .hd\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .hd\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .hd\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .hd\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .hd\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .hd\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .hd\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .hd\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .hd\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .hd\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .hd\:hover\:text-border-70:hover{
    color: rgba(230, 235, 245, 0.7);
  }

  .hd\:hover\:text-form-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:text-form-active-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:text-black-70:hover{
    color: rgba(33, 37, 41, 0.7);
  }

  .hd\:hover\:text-grey-darkest-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:text-grey-darker-70:hover{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:hover\:text-grey-dark-70:hover{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:hover\:text-grey-70:hover{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:hover\:text-grey-light-70:hover{
    color: rgba(179, 188, 197, 0.7);
  }

  .hd\:hover\:text-grey-lighter-70:hover{
    color: rgba(222, 228, 233, 0.7);
  }

  .hd\:hover\:text-grey-lightest-70:hover{
    color: rgba(244, 246, 249, 0.7);
  }

  .hd\:hover\:text-white-70:hover{
    color: rgba(255, 255, 255, 0.7);
  }

  .hd\:hover\:text-red-70:hover{
    color: rgba(211, 26, 8, 0.7);
  }

  .hd\:hover\:text-green-70:hover{
    color: rgba(102, 187, 8, 0.7);
  }

  .hd\:hover\:text-blue-70:hover{
    color: rgba(31, 168, 226, 0.7);
  }

  .hd\:hover\:text-orange-70:hover{
    color: rgba(247, 148, 14, 0.7);
  }

  .hd\:hover\:text-primary-darkest-70:hover{
    color: rgba(83, 15, 18, 0.7);
  }

  .hd\:hover\:text-primary-darker-70:hover{
    color: rgba(124, 23, 27, 0.7);
  }

  .hd\:hover\:text-primary-dark-70:hover{
    color: rgba(166, 30, 36, 0.7);
  }

  .hd\:hover\:text-primary-70:hover{
    color: rgba(207, 38, 45, 0.7);
  }

  .hd\:hover\:text-primary-light-70:hover{
    color: rgba(217, 81, 87, 0.7);
  }

  .hd\:hover\:text-primary-lighter-70:hover{
    color: rgba(226, 125, 129, 0.7);
  }

  .hd\:hover\:text-primary-lightest-70:hover{
    color: rgba(236, 168, 171, 0.7);
  }

  .hd\:hover\:text-secondary-darkest-70:hover{
    color: rgba(62, 69, 37, 0.7);
  }

  .hd\:hover\:text-secondary-darker-70:hover{
    color: rgba(94, 104, 55, 0.7);
  }

  .hd\:hover\:text-secondary-dark-70:hover{
    color: rgba(125, 138, 74, 0.7);
  }

  .hd\:hover\:text-secondary-70:hover{
    color: rgba(156, 173, 92, 0.7);
  }

  .hd\:hover\:text-secondary-light-70:hover{
    color: rgba(176, 189, 125, 0.7);
  }

  .hd\:hover\:text-secondary-lighter-70:hover{
    color: rgba(196, 206, 157, 0.7);
  }

  .hd\:hover\:text-secondary-lightest-70:hover{
    color: rgba(215, 222, 190, 0.7);
  }

  .hd\:hover\:text-tertiary-darkest-70:hover{
    color: rgba(15, 47, 33, 0.7);
  }

  .hd\:hover\:text-tertiary-darker-70:hover{
    color: rgba(26, 71, 49, 0.7);
  }

  .hd\:hover\:text-tertiary-dark-70:hover{
    color: rgba(31, 157, 85, 0.7);
  }

  .hd\:hover\:text-tertiary-70:hover{
    color: rgba(255, 197, 0, 0.7);
  }

  .hd\:hover\:text-tertiary-light-70:hover{
    color: rgba(81, 216, 138, 0.7);
  }

  .hd\:hover\:text-tertiary-lighter-70:hover{
    color: rgba(162, 245, 191, 0.7);
  }

  .hd\:hover\:text-tertiary-lightest-70:hover{
    color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .hd\:focus\:text-border-70:focus{
    color: rgba(230, 235, 245, 0.7);
  }

  .hd\:focus\:text-form-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:text-form-active-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:text-black-70:focus{
    color: rgba(33, 37, 41, 0.7);
  }

  .hd\:focus\:text-grey-darkest-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:text-grey-darker-70:focus{
    color: rgba(154, 165, 192, 0.7);
  }

  .hd\:focus\:text-grey-dark-70:focus{
    color: rgba(66, 80, 92, 0.7);
  }

  .hd\:focus\:text-grey-70:focus{
    color: rgba(121, 130, 139, 0.7);
  }

  .hd\:focus\:text-grey-light-70:focus{
    color: rgba(179, 188, 197, 0.7);
  }

  .hd\:focus\:text-grey-lighter-70:focus{
    color: rgba(222, 228, 233, 0.7);
  }

  .hd\:focus\:text-grey-lightest-70:focus{
    color: rgba(244, 246, 249, 0.7);
  }

  .hd\:focus\:text-white-70:focus{
    color: rgba(255, 255, 255, 0.7);
  }

  .hd\:focus\:text-red-70:focus{
    color: rgba(211, 26, 8, 0.7);
  }

  .hd\:focus\:text-green-70:focus{
    color: rgba(102, 187, 8, 0.7);
  }

  .hd\:focus\:text-blue-70:focus{
    color: rgba(31, 168, 226, 0.7);
  }

  .hd\:focus\:text-orange-70:focus{
    color: rgba(247, 148, 14, 0.7);
  }

  .hd\:focus\:text-primary-darkest-70:focus{
    color: rgba(83, 15, 18, 0.7);
  }

  .hd\:focus\:text-primary-darker-70:focus{
    color: rgba(124, 23, 27, 0.7);
  }

  .hd\:focus\:text-primary-dark-70:focus{
    color: rgba(166, 30, 36, 0.7);
  }

  .hd\:focus\:text-primary-70:focus{
    color: rgba(207, 38, 45, 0.7);
  }

  .hd\:focus\:text-primary-light-70:focus{
    color: rgba(217, 81, 87, 0.7);
  }

  .hd\:focus\:text-primary-lighter-70:focus{
    color: rgba(226, 125, 129, 0.7);
  }

  .hd\:focus\:text-primary-lightest-70:focus{
    color: rgba(236, 168, 171, 0.7);
  }

  .hd\:focus\:text-secondary-darkest-70:focus{
    color: rgba(62, 69, 37, 0.7);
  }

  .hd\:focus\:text-secondary-darker-70:focus{
    color: rgba(94, 104, 55, 0.7);
  }

  .hd\:focus\:text-secondary-dark-70:focus{
    color: rgba(125, 138, 74, 0.7);
  }

  .hd\:focus\:text-secondary-70:focus{
    color: rgba(156, 173, 92, 0.7);
  }

  .hd\:focus\:text-secondary-light-70:focus{
    color: rgba(176, 189, 125, 0.7);
  }

  .hd\:focus\:text-secondary-lighter-70:focus{
    color: rgba(196, 206, 157, 0.7);
  }

  .hd\:focus\:text-secondary-lightest-70:focus{
    color: rgba(215, 222, 190, 0.7);
  }

  .hd\:focus\:text-tertiary-darkest-70:focus{
    color: rgba(15, 47, 33, 0.7);
  }

  .hd\:focus\:text-tertiary-darker-70:focus{
    color: rgba(26, 71, 49, 0.7);
  }

  .hd\:focus\:text-tertiary-dark-70:focus{
    color: rgba(31, 157, 85, 0.7);
  }

  .hd\:focus\:text-tertiary-70:focus{
    color: rgba(255, 197, 0, 0.7);
  }

  .hd\:focus\:text-tertiary-light-70:focus{
    color: rgba(81, 216, 138, 0.7);
  }

  .hd\:focus\:text-tertiary-lighter-70:focus{
    color: rgba(162, 245, 191, 0.7);
  }

  .hd\:focus\:text-tertiary-lightest-70:focus{
    color: rgba(227, 252, 236, 0.7);
  }

  .group:hover .hd\:group-hover\:text-border-70{
    color: rgba(230, 235, 245, 0.7);
  }

  .group:hover .hd\:group-hover\:text-form-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:text-form-active-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:text-black-70{
    color: rgba(33, 37, 41, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-70{
    color: rgba(154, 165, 192, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-70{
    color: rgba(66, 80, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-70{
    color: rgba(121, 130, 139, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-light-70{
    color: rgba(179, 188, 197, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-70{
    color: rgba(222, 228, 233, 0.7);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-70{
    color: rgba(244, 246, 249, 0.7);
  }

  .group:hover .hd\:group-hover\:text-white-70{
    color: rgba(255, 255, 255, 0.7);
  }

  .group:hover .hd\:group-hover\:text-red-70{
    color: rgba(211, 26, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:text-green-70{
    color: rgba(102, 187, 8, 0.7);
  }

  .group:hover .hd\:group-hover\:text-blue-70{
    color: rgba(31, 168, 226, 0.7);
  }

  .group:hover .hd\:group-hover\:text-orange-70{
    color: rgba(247, 148, 14, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-70{
    color: rgba(83, 15, 18, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-70{
    color: rgba(124, 23, 27, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-70{
    color: rgba(166, 30, 36, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-70{
    color: rgba(207, 38, 45, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-light-70{
    color: rgba(217, 81, 87, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-70{
    color: rgba(226, 125, 129, 0.7);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-70{
    color: rgba(236, 168, 171, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-70{
    color: rgba(62, 69, 37, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-70{
    color: rgba(94, 104, 55, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-70{
    color: rgba(125, 138, 74, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-70{
    color: rgba(156, 173, 92, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-70{
    color: rgba(176, 189, 125, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-70{
    color: rgba(196, 206, 157, 0.7);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-70{
    color: rgba(215, 222, 190, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-70{
    color: rgba(15, 47, 33, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-70{
    color: rgba(26, 71, 49, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-70{
    color: rgba(31, 157, 85, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-70{
    color: rgba(255, 197, 0, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-70{
    color: rgba(81, 216, 138, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-70{
    color: rgba(162, 245, 191, 0.7);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-70{
    color: rgba(227, 252, 236, 0.7);
  }

  .hd\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:bg-border-90:hover{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:bg-form-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:bg-form-active-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:bg-black-90:hover{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:bg-grey-darkest-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:bg-grey-darker-90:hover{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:bg-grey-dark-90:hover{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:bg-grey-90:hover{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:bg-grey-light-90:hover{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:bg-grey-lighter-90:hover{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:bg-grey-lightest-90:hover{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:bg-white-90:hover{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:bg-red-90:hover{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:bg-green-90:hover{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:bg-blue-90:hover{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:bg-orange-90:hover{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:bg-primary-darkest-90:hover{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:bg-primary-darker-90:hover{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:bg-primary-dark-90:hover{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:bg-primary-90:hover{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:bg-primary-light-90:hover{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:bg-primary-lighter-90:hover{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:bg-primary-lightest-90:hover{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:bg-secondary-darkest-90:hover{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:bg-secondary-darker-90:hover{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:bg-secondary-dark-90:hover{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:bg-secondary-90:hover{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:bg-secondary-light-90:hover{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:bg-secondary-lighter-90:hover{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:bg-secondary-lightest-90:hover{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:bg-tertiary-darkest-90:hover{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:bg-tertiary-darker-90:hover{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:bg-tertiary-dark-90:hover{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:bg-tertiary-90:hover{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:bg-tertiary-light-90:hover{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:bg-tertiary-lighter-90:hover{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:bg-tertiary-lightest-90:hover{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:bg-border-90:focus{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:bg-form-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:bg-form-active-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:bg-black-90:focus{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:bg-grey-darkest-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:bg-grey-darker-90:focus{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:bg-grey-dark-90:focus{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:bg-grey-90:focus{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:bg-grey-light-90:focus{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:bg-grey-lighter-90:focus{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:bg-grey-lightest-90:focus{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:bg-white-90:focus{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:bg-red-90:focus{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:bg-green-90:focus{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:bg-blue-90:focus{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:bg-orange-90:focus{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:bg-primary-darkest-90:focus{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:bg-primary-darker-90:focus{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:bg-primary-dark-90:focus{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:bg-primary-90:focus{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:bg-primary-light-90:focus{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:bg-primary-lighter-90:focus{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:bg-primary-lightest-90:focus{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:bg-secondary-darkest-90:focus{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:bg-secondary-darker-90:focus{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:bg-secondary-dark-90:focus{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:bg-secondary-90:focus{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:bg-secondary-light-90:focus{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:bg-secondary-lighter-90:focus{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:bg-secondary-lightest-90:focus{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:bg-tertiary-darkest-90:focus{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:bg-tertiary-darker-90:focus{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:bg-tertiary-dark-90:focus{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:bg-tertiary-90:focus{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:bg-tertiary-light-90:focus{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:bg-tertiary-lighter-90:focus{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:bg-tertiary-lightest-90:focus{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-border-90{
    background-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-form-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-form-active-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-black-90{
    background-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-darkest-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-darker-90{
    background-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-dark-90{
    background-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-90{
    background-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-light-90{
    background-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-lighter-90{
    background-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-grey-lightest-90{
    background-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-white-90{
    background-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-red-90{
    background-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-green-90{
    background-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-blue-90{
    background-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-orange-90{
    background-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-darkest-90{
    background-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-darker-90{
    background-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-dark-90{
    background-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-90{
    background-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-light-90{
    background-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-lighter-90{
    background-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-primary-lightest-90{
    background-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darkest-90{
    background-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-darker-90{
    background-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-dark-90{
    background-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-90{
    background-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-light-90{
    background-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lighter-90{
    background-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-secondary-lightest-90{
    background-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darkest-90{
    background-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-darker-90{
    background-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-dark-90{
    background-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-90{
    background-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-light-90{
    background-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lighter-90{
    background-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:bg-tertiary-lightest-90{
    background-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-border-90:hover{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:border-t-border-90:hover{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:border-r-border-90:hover{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:border-b-border-90:hover{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:border-l-border-90:hover{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:border-form-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-t-form-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-r-form-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-b-form-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-l-form-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-form-active-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-t-form-active-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-r-form-active-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-b-form-active-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-l-form-active-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-black-90:hover{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:border-t-black-90:hover{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:border-r-black-90:hover{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:border-b-black-90:hover{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:border-l-black-90:hover{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:border-grey-darkest-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-t-grey-darkest-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-r-grey-darkest-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-b-grey-darkest-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-l-grey-darkest-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-grey-darker-90:hover{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-t-grey-darker-90:hover{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-r-grey-darker-90:hover{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-b-grey-darker-90:hover{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-l-grey-darker-90:hover{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:border-grey-dark-90:hover{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-t-grey-dark-90:hover{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-r-grey-dark-90:hover{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-b-grey-dark-90:hover{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-l-grey-dark-90:hover{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:border-grey-90:hover{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-t-grey-90:hover{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-r-grey-90:hover{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-b-grey-90:hover{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-l-grey-90:hover{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:border-grey-light-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-t-grey-light-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-r-grey-light-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-b-grey-light-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-l-grey-light-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-grey-lighter-90:hover{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:border-t-grey-lighter-90:hover{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:border-r-grey-lighter-90:hover{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:border-b-grey-lighter-90:hover{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:border-l-grey-lighter-90:hover{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:border-grey-lightest-90:hover{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:border-t-grey-lightest-90:hover{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:border-r-grey-lightest-90:hover{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:border-b-grey-lightest-90:hover{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:border-l-grey-lightest-90:hover{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:border-white-90:hover{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:border-t-white-90:hover{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:border-r-white-90:hover{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:border-b-white-90:hover{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:border-l-white-90:hover{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:border-red-90:hover{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:border-t-red-90:hover{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:border-r-red-90:hover{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:border-b-red-90:hover{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:border-l-red-90:hover{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:border-green-90:hover{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:border-t-green-90:hover{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:border-r-green-90:hover{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:border-b-green-90:hover{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:border-l-green-90:hover{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:border-blue-90:hover{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:border-t-blue-90:hover{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:border-r-blue-90:hover{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:border-b-blue-90:hover{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:border-l-blue-90:hover{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:border-orange-90:hover{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:border-t-orange-90:hover{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:border-r-orange-90:hover{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:border-b-orange-90:hover{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:border-l-orange-90:hover{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:border-primary-darkest-90:hover{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:border-t-primary-darkest-90:hover{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:border-r-primary-darkest-90:hover{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:border-b-primary-darkest-90:hover{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:border-l-primary-darkest-90:hover{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:border-primary-darker-90:hover{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:border-t-primary-darker-90:hover{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:border-r-primary-darker-90:hover{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:border-b-primary-darker-90:hover{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:border-l-primary-darker-90:hover{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:border-primary-dark-90:hover{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:border-t-primary-dark-90:hover{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:border-r-primary-dark-90:hover{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:border-b-primary-dark-90:hover{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:border-l-primary-dark-90:hover{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:border-primary-90:hover{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:border-t-primary-90:hover{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:border-r-primary-90:hover{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:border-b-primary-90:hover{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:border-l-primary-90:hover{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:border-primary-light-90:hover{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:border-t-primary-light-90:hover{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:border-r-primary-light-90:hover{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:border-b-primary-light-90:hover{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:border-l-primary-light-90:hover{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:border-primary-lighter-90:hover{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:border-t-primary-lighter-90:hover{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:border-r-primary-lighter-90:hover{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:border-b-primary-lighter-90:hover{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:border-l-primary-lighter-90:hover{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:border-primary-lightest-90:hover{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:border-t-primary-lightest-90:hover{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:border-r-primary-lightest-90:hover{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:border-b-primary-lightest-90:hover{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:border-l-primary-lightest-90:hover{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:border-secondary-darkest-90:hover{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:border-t-secondary-darkest-90:hover{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:border-r-secondary-darkest-90:hover{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:border-b-secondary-darkest-90:hover{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:border-l-secondary-darkest-90:hover{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:border-secondary-darker-90:hover{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:border-t-secondary-darker-90:hover{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:border-r-secondary-darker-90:hover{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:border-b-secondary-darker-90:hover{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:border-l-secondary-darker-90:hover{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:border-secondary-dark-90:hover{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:border-t-secondary-dark-90:hover{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:border-r-secondary-dark-90:hover{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:border-b-secondary-dark-90:hover{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:border-l-secondary-dark-90:hover{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:border-secondary-90:hover{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:border-t-secondary-90:hover{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:border-r-secondary-90:hover{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:border-b-secondary-90:hover{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:border-l-secondary-90:hover{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:border-secondary-light-90:hover{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:border-t-secondary-light-90:hover{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:border-r-secondary-light-90:hover{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:border-b-secondary-light-90:hover{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:border-l-secondary-light-90:hover{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:border-secondary-lighter-90:hover{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:border-t-secondary-lighter-90:hover{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:border-r-secondary-lighter-90:hover{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:border-b-secondary-lighter-90:hover{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:border-l-secondary-lighter-90:hover{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:border-secondary-lightest-90:hover{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:border-t-secondary-lightest-90:hover{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:border-r-secondary-lightest-90:hover{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:border-b-secondary-lightest-90:hover{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:border-l-secondary-lightest-90:hover{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:border-tertiary-darkest-90:hover{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:border-t-tertiary-darkest-90:hover{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:border-r-tertiary-darkest-90:hover{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:border-b-tertiary-darkest-90:hover{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:border-l-tertiary-darkest-90:hover{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:border-tertiary-darker-90:hover{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:border-t-tertiary-darker-90:hover{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:border-r-tertiary-darker-90:hover{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:border-b-tertiary-darker-90:hover{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:border-l-tertiary-darker-90:hover{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:border-tertiary-dark-90:hover{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:border-t-tertiary-dark-90:hover{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:border-r-tertiary-dark-90:hover{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:border-b-tertiary-dark-90:hover{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:border-l-tertiary-dark-90:hover{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:border-tertiary-90:hover{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:border-t-tertiary-90:hover{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:border-r-tertiary-90:hover{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:border-b-tertiary-90:hover{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:border-l-tertiary-90:hover{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:border-tertiary-light-90:hover{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:border-t-tertiary-light-90:hover{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:border-r-tertiary-light-90:hover{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:border-b-tertiary-light-90:hover{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:border-l-tertiary-light-90:hover{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:border-tertiary-lighter-90:hover{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:border-t-tertiary-lighter-90:hover{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:border-r-tertiary-lighter-90:hover{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:border-b-tertiary-lighter-90:hover{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:border-l-tertiary-lighter-90:hover{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:border-tertiary-lightest-90:hover{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:border-t-tertiary-lightest-90:hover{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:border-r-tertiary-lightest-90:hover{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:border-b-tertiary-lightest-90:hover{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:border-l-tertiary-lightest-90:hover{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:border-default-90:hover{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-t-default-90:hover{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-r-default-90:hover{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-b-default-90:hover{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:border-l-default-90:hover{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-border-90:focus{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-t-border-90:focus{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-r-border-90:focus{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-b-border-90:focus{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-l-border-90:focus{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:border-form-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-t-form-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-r-form-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-b-form-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-l-form-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-form-active-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-t-form-active-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-r-form-active-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-b-form-active-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-l-form-active-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-black-90:focus{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-t-black-90:focus{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-r-black-90:focus{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-b-black-90:focus{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-l-black-90:focus{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:border-grey-darkest-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-t-grey-darkest-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-r-grey-darkest-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-b-grey-darkest-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-l-grey-darkest-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-grey-darker-90:focus{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-t-grey-darker-90:focus{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-r-grey-darker-90:focus{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-b-grey-darker-90:focus{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-l-grey-darker-90:focus{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:border-grey-dark-90:focus{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-t-grey-dark-90:focus{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-r-grey-dark-90:focus{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-b-grey-dark-90:focus{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-l-grey-dark-90:focus{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:border-grey-90:focus{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-t-grey-90:focus{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-r-grey-90:focus{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-b-grey-90:focus{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-l-grey-90:focus{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:border-grey-light-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-t-grey-light-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-r-grey-light-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-b-grey-light-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-l-grey-light-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-grey-lighter-90:focus{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-t-grey-lighter-90:focus{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-r-grey-lighter-90:focus{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-b-grey-lighter-90:focus{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-l-grey-lighter-90:focus{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:border-grey-lightest-90:focus{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-t-grey-lightest-90:focus{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-r-grey-lightest-90:focus{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-b-grey-lightest-90:focus{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-l-grey-lightest-90:focus{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:border-white-90:focus{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-t-white-90:focus{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-r-white-90:focus{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-b-white-90:focus{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-l-white-90:focus{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:border-red-90:focus{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-t-red-90:focus{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-r-red-90:focus{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-b-red-90:focus{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-l-red-90:focus{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:border-green-90:focus{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-t-green-90:focus{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-r-green-90:focus{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-b-green-90:focus{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-l-green-90:focus{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:border-blue-90:focus{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-t-blue-90:focus{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-r-blue-90:focus{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-b-blue-90:focus{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-l-blue-90:focus{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:border-orange-90:focus{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-t-orange-90:focus{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-r-orange-90:focus{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-b-orange-90:focus{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-l-orange-90:focus{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:border-primary-darkest-90:focus{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-t-primary-darkest-90:focus{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-r-primary-darkest-90:focus{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-b-primary-darkest-90:focus{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-l-primary-darkest-90:focus{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:border-primary-darker-90:focus{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-t-primary-darker-90:focus{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-r-primary-darker-90:focus{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-b-primary-darker-90:focus{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-l-primary-darker-90:focus{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:border-primary-dark-90:focus{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-t-primary-dark-90:focus{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-r-primary-dark-90:focus{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-b-primary-dark-90:focus{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-l-primary-dark-90:focus{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:border-primary-90:focus{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-t-primary-90:focus{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-r-primary-90:focus{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-b-primary-90:focus{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-l-primary-90:focus{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:border-primary-light-90:focus{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-t-primary-light-90:focus{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-r-primary-light-90:focus{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-b-primary-light-90:focus{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-l-primary-light-90:focus{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:border-primary-lighter-90:focus{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-t-primary-lighter-90:focus{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-r-primary-lighter-90:focus{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-b-primary-lighter-90:focus{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-l-primary-lighter-90:focus{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:border-primary-lightest-90:focus{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-t-primary-lightest-90:focus{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-r-primary-lightest-90:focus{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-b-primary-lightest-90:focus{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-l-primary-lightest-90:focus{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:border-secondary-darkest-90:focus{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-t-secondary-darkest-90:focus{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-r-secondary-darkest-90:focus{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-b-secondary-darkest-90:focus{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-l-secondary-darkest-90:focus{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:border-secondary-darker-90:focus{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-t-secondary-darker-90:focus{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-r-secondary-darker-90:focus{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-b-secondary-darker-90:focus{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-l-secondary-darker-90:focus{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:border-secondary-dark-90:focus{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-t-secondary-dark-90:focus{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-r-secondary-dark-90:focus{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-b-secondary-dark-90:focus{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-l-secondary-dark-90:focus{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:border-secondary-90:focus{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-t-secondary-90:focus{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-r-secondary-90:focus{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-b-secondary-90:focus{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-l-secondary-90:focus{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:border-secondary-light-90:focus{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-t-secondary-light-90:focus{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-r-secondary-light-90:focus{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-b-secondary-light-90:focus{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-l-secondary-light-90:focus{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:border-secondary-lighter-90:focus{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-t-secondary-lighter-90:focus{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-r-secondary-lighter-90:focus{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-b-secondary-lighter-90:focus{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-l-secondary-lighter-90:focus{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:border-secondary-lightest-90:focus{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-t-secondary-lightest-90:focus{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-r-secondary-lightest-90:focus{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-b-secondary-lightest-90:focus{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-l-secondary-lightest-90:focus{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:border-tertiary-darkest-90:focus{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-t-tertiary-darkest-90:focus{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-r-tertiary-darkest-90:focus{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-b-tertiary-darkest-90:focus{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-l-tertiary-darkest-90:focus{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:border-tertiary-darker-90:focus{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-t-tertiary-darker-90:focus{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-r-tertiary-darker-90:focus{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-b-tertiary-darker-90:focus{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-l-tertiary-darker-90:focus{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:border-tertiary-dark-90:focus{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-t-tertiary-dark-90:focus{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-r-tertiary-dark-90:focus{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-b-tertiary-dark-90:focus{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-l-tertiary-dark-90:focus{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:border-tertiary-90:focus{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-t-tertiary-90:focus{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-r-tertiary-90:focus{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-b-tertiary-90:focus{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-l-tertiary-90:focus{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:border-tertiary-light-90:focus{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-t-tertiary-light-90:focus{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-r-tertiary-light-90:focus{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-b-tertiary-light-90:focus{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-l-tertiary-light-90:focus{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:border-tertiary-lighter-90:focus{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-t-tertiary-lighter-90:focus{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-r-tertiary-lighter-90:focus{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-b-tertiary-lighter-90:focus{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-l-tertiary-lighter-90:focus{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:border-tertiary-lightest-90:focus{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-t-tertiary-lightest-90:focus{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-r-tertiary-lightest-90:focus{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-b-tertiary-lightest-90:focus{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-l-tertiary-lightest-90:focus{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:border-default-90:focus{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-t-default-90:focus{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-r-default-90:focus{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-b-default-90:focus{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:border-l-default-90:focus{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-border-90{
    border-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-border-90{
    border-top-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-border-90{
    border-right-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-border-90{
    border-bottom-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-border-90{
    border-left-color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:border-form-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-form-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-form-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-form-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-form-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-form-active-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-form-active-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-form-active-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-form-active-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-form-active-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-black-90{
    border-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-black-90{
    border-top-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-black-90{
    border-right-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-black-90{
    border-bottom-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-black-90{
    border-left-color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-darkest-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darkest-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darkest-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darkest-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darkest-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-darker-90{
    border-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-darker-90{
    border-top-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-darker-90{
    border-right-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-darker-90{
    border-bottom-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-darker-90{
    border-left-color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-dark-90{
    border-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-dark-90{
    border-top-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-dark-90{
    border-right-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-dark-90{
    border-bottom-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-dark-90{
    border-left-color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-90{
    border-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-90{
    border-top-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-90{
    border-right-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-90{
    border-bottom-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-90{
    border-left-color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-light-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-light-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-light-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-light-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-light-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-lighter-90{
    border-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lighter-90{
    border-top-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lighter-90{
    border-right-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lighter-90{
    border-bottom-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lighter-90{
    border-left-color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:border-grey-lightest-90{
    border-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-grey-lightest-90{
    border-top-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-grey-lightest-90{
    border-right-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-grey-lightest-90{
    border-bottom-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-grey-lightest-90{
    border-left-color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:border-white-90{
    border-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-white-90{
    border-top-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-white-90{
    border-right-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-white-90{
    border-bottom-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-white-90{
    border-left-color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:border-red-90{
    border-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-red-90{
    border-top-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-red-90{
    border-right-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-red-90{
    border-bottom-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-red-90{
    border-left-color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-green-90{
    border-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-green-90{
    border-top-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-green-90{
    border-right-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-green-90{
    border-bottom-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-green-90{
    border-left-color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:border-blue-90{
    border-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-blue-90{
    border-top-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-blue-90{
    border-right-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-blue-90{
    border-bottom-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-blue-90{
    border-left-color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:border-orange-90{
    border-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-orange-90{
    border-top-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-orange-90{
    border-right-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-orange-90{
    border-bottom-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-orange-90{
    border-left-color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-darkest-90{
    border-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darkest-90{
    border-top-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darkest-90{
    border-right-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darkest-90{
    border-bottom-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darkest-90{
    border-left-color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-darker-90{
    border-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-darker-90{
    border-top-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-darker-90{
    border-right-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-darker-90{
    border-bottom-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-darker-90{
    border-left-color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-dark-90{
    border-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-dark-90{
    border-top-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-dark-90{
    border-right-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-dark-90{
    border-bottom-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-dark-90{
    border-left-color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-90{
    border-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-90{
    border-top-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-90{
    border-right-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-90{
    border-bottom-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-90{
    border-left-color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-light-90{
    border-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-light-90{
    border-top-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-light-90{
    border-right-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-light-90{
    border-bottom-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-light-90{
    border-left-color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-lighter-90{
    border-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lighter-90{
    border-top-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lighter-90{
    border-right-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lighter-90{
    border-bottom-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lighter-90{
    border-left-color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:border-primary-lightest-90{
    border-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-primary-lightest-90{
    border-top-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-primary-lightest-90{
    border-right-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-primary-lightest-90{
    border-bottom-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-primary-lightest-90{
    border-left-color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-darkest-90{
    border-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darkest-90{
    border-top-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darkest-90{
    border-right-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darkest-90{
    border-bottom-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darkest-90{
    border-left-color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-darker-90{
    border-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-darker-90{
    border-top-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-darker-90{
    border-right-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-darker-90{
    border-bottom-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-darker-90{
    border-left-color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-dark-90{
    border-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-dark-90{
    border-top-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-dark-90{
    border-right-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-dark-90{
    border-bottom-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-dark-90{
    border-left-color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-90{
    border-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-90{
    border-top-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-90{
    border-right-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-90{
    border-bottom-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-90{
    border-left-color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-light-90{
    border-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-light-90{
    border-top-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-light-90{
    border-right-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-light-90{
    border-bottom-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-light-90{
    border-left-color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-lighter-90{
    border-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lighter-90{
    border-top-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lighter-90{
    border-right-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lighter-90{
    border-bottom-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lighter-90{
    border-left-color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:border-secondary-lightest-90{
    border-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-secondary-lightest-90{
    border-top-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-secondary-lightest-90{
    border-right-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-secondary-lightest-90{
    border-bottom-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-secondary-lightest-90{
    border-left-color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darkest-90{
    border-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darkest-90{
    border-top-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darkest-90{
    border-right-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darkest-90{
    border-bottom-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darkest-90{
    border-left-color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-darker-90{
    border-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-darker-90{
    border-top-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-darker-90{
    border-right-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-darker-90{
    border-bottom-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-darker-90{
    border-left-color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-dark-90{
    border-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-dark-90{
    border-top-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-dark-90{
    border-right-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-dark-90{
    border-bottom-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-dark-90{
    border-left-color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-90{
    border-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-90{
    border-top-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-90{
    border-right-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-90{
    border-bottom-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-90{
    border-left-color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-light-90{
    border-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-light-90{
    border-top-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-light-90{
    border-right-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-light-90{
    border-bottom-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-light-90{
    border-left-color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lighter-90{
    border-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lighter-90{
    border-top-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lighter-90{
    border-right-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lighter-90{
    border-bottom-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lighter-90{
    border-left-color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:border-tertiary-lightest-90{
    border-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-tertiary-lightest-90{
    border-top-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-tertiary-lightest-90{
    border-right-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-tertiary-lightest-90{
    border-bottom-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-tertiary-lightest-90{
    border-left-color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:border-default-90{
    border-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-t-default-90{
    border-top-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-r-default-90{
    border-right-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-b-default-90{
    border-bottom-color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:border-l-default-90{
    border-left-color: rgba(179, 188, 197, 0.9);
  }

  .hd\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .hd\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .hd\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .hd\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .hd\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .hd\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .hd\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .hd\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .hd\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .hd\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .hd\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .hd\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .hd\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .hd\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .hd\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .hd\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .hd\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .hd\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .hd\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .hd\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .hd\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .hd\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .hd\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .hd\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .hd\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .hd\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .hd\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .hd\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .hd\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .hd\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .hd\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .hd\:hover\:text-border-90:hover{
    color: rgba(230, 235, 245, 0.9);
  }

  .hd\:hover\:text-form-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:text-form-active-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:text-black-90:hover{
    color: rgba(33, 37, 41, 0.9);
  }

  .hd\:hover\:text-grey-darkest-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:text-grey-darker-90:hover{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:hover\:text-grey-dark-90:hover{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:hover\:text-grey-90:hover{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:hover\:text-grey-light-90:hover{
    color: rgba(179, 188, 197, 0.9);
  }

  .hd\:hover\:text-grey-lighter-90:hover{
    color: rgba(222, 228, 233, 0.9);
  }

  .hd\:hover\:text-grey-lightest-90:hover{
    color: rgba(244, 246, 249, 0.9);
  }

  .hd\:hover\:text-white-90:hover{
    color: rgba(255, 255, 255, 0.9);
  }

  .hd\:hover\:text-red-90:hover{
    color: rgba(211, 26, 8, 0.9);
  }

  .hd\:hover\:text-green-90:hover{
    color: rgba(102, 187, 8, 0.9);
  }

  .hd\:hover\:text-blue-90:hover{
    color: rgba(31, 168, 226, 0.9);
  }

  .hd\:hover\:text-orange-90:hover{
    color: rgba(247, 148, 14, 0.9);
  }

  .hd\:hover\:text-primary-darkest-90:hover{
    color: rgba(83, 15, 18, 0.9);
  }

  .hd\:hover\:text-primary-darker-90:hover{
    color: rgba(124, 23, 27, 0.9);
  }

  .hd\:hover\:text-primary-dark-90:hover{
    color: rgba(166, 30, 36, 0.9);
  }

  .hd\:hover\:text-primary-90:hover{
    color: rgba(207, 38, 45, 0.9);
  }

  .hd\:hover\:text-primary-light-90:hover{
    color: rgba(217, 81, 87, 0.9);
  }

  .hd\:hover\:text-primary-lighter-90:hover{
    color: rgba(226, 125, 129, 0.9);
  }

  .hd\:hover\:text-primary-lightest-90:hover{
    color: rgba(236, 168, 171, 0.9);
  }

  .hd\:hover\:text-secondary-darkest-90:hover{
    color: rgba(62, 69, 37, 0.9);
  }

  .hd\:hover\:text-secondary-darker-90:hover{
    color: rgba(94, 104, 55, 0.9);
  }

  .hd\:hover\:text-secondary-dark-90:hover{
    color: rgba(125, 138, 74, 0.9);
  }

  .hd\:hover\:text-secondary-90:hover{
    color: rgba(156, 173, 92, 0.9);
  }

  .hd\:hover\:text-secondary-light-90:hover{
    color: rgba(176, 189, 125, 0.9);
  }

  .hd\:hover\:text-secondary-lighter-90:hover{
    color: rgba(196, 206, 157, 0.9);
  }

  .hd\:hover\:text-secondary-lightest-90:hover{
    color: rgba(215, 222, 190, 0.9);
  }

  .hd\:hover\:text-tertiary-darkest-90:hover{
    color: rgba(15, 47, 33, 0.9);
  }

  .hd\:hover\:text-tertiary-darker-90:hover{
    color: rgba(26, 71, 49, 0.9);
  }

  .hd\:hover\:text-tertiary-dark-90:hover{
    color: rgba(31, 157, 85, 0.9);
  }

  .hd\:hover\:text-tertiary-90:hover{
    color: rgba(255, 197, 0, 0.9);
  }

  .hd\:hover\:text-tertiary-light-90:hover{
    color: rgba(81, 216, 138, 0.9);
  }

  .hd\:hover\:text-tertiary-lighter-90:hover{
    color: rgba(162, 245, 191, 0.9);
  }

  .hd\:hover\:text-tertiary-lightest-90:hover{
    color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .hd\:focus\:text-border-90:focus{
    color: rgba(230, 235, 245, 0.9);
  }

  .hd\:focus\:text-form-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:text-form-active-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:text-black-90:focus{
    color: rgba(33, 37, 41, 0.9);
  }

  .hd\:focus\:text-grey-darkest-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:text-grey-darker-90:focus{
    color: rgba(154, 165, 192, 0.9);
  }

  .hd\:focus\:text-grey-dark-90:focus{
    color: rgba(66, 80, 92, 0.9);
  }

  .hd\:focus\:text-grey-90:focus{
    color: rgba(121, 130, 139, 0.9);
  }

  .hd\:focus\:text-grey-light-90:focus{
    color: rgba(179, 188, 197, 0.9);
  }

  .hd\:focus\:text-grey-lighter-90:focus{
    color: rgba(222, 228, 233, 0.9);
  }

  .hd\:focus\:text-grey-lightest-90:focus{
    color: rgba(244, 246, 249, 0.9);
  }

  .hd\:focus\:text-white-90:focus{
    color: rgba(255, 255, 255, 0.9);
  }

  .hd\:focus\:text-red-90:focus{
    color: rgba(211, 26, 8, 0.9);
  }

  .hd\:focus\:text-green-90:focus{
    color: rgba(102, 187, 8, 0.9);
  }

  .hd\:focus\:text-blue-90:focus{
    color: rgba(31, 168, 226, 0.9);
  }

  .hd\:focus\:text-orange-90:focus{
    color: rgba(247, 148, 14, 0.9);
  }

  .hd\:focus\:text-primary-darkest-90:focus{
    color: rgba(83, 15, 18, 0.9);
  }

  .hd\:focus\:text-primary-darker-90:focus{
    color: rgba(124, 23, 27, 0.9);
  }

  .hd\:focus\:text-primary-dark-90:focus{
    color: rgba(166, 30, 36, 0.9);
  }

  .hd\:focus\:text-primary-90:focus{
    color: rgba(207, 38, 45, 0.9);
  }

  .hd\:focus\:text-primary-light-90:focus{
    color: rgba(217, 81, 87, 0.9);
  }

  .hd\:focus\:text-primary-lighter-90:focus{
    color: rgba(226, 125, 129, 0.9);
  }

  .hd\:focus\:text-primary-lightest-90:focus{
    color: rgba(236, 168, 171, 0.9);
  }

  .hd\:focus\:text-secondary-darkest-90:focus{
    color: rgba(62, 69, 37, 0.9);
  }

  .hd\:focus\:text-secondary-darker-90:focus{
    color: rgba(94, 104, 55, 0.9);
  }

  .hd\:focus\:text-secondary-dark-90:focus{
    color: rgba(125, 138, 74, 0.9);
  }

  .hd\:focus\:text-secondary-90:focus{
    color: rgba(156, 173, 92, 0.9);
  }

  .hd\:focus\:text-secondary-light-90:focus{
    color: rgba(176, 189, 125, 0.9);
  }

  .hd\:focus\:text-secondary-lighter-90:focus{
    color: rgba(196, 206, 157, 0.9);
  }

  .hd\:focus\:text-secondary-lightest-90:focus{
    color: rgba(215, 222, 190, 0.9);
  }

  .hd\:focus\:text-tertiary-darkest-90:focus{
    color: rgba(15, 47, 33, 0.9);
  }

  .hd\:focus\:text-tertiary-darker-90:focus{
    color: rgba(26, 71, 49, 0.9);
  }

  .hd\:focus\:text-tertiary-dark-90:focus{
    color: rgba(31, 157, 85, 0.9);
  }

  .hd\:focus\:text-tertiary-90:focus{
    color: rgba(255, 197, 0, 0.9);
  }

  .hd\:focus\:text-tertiary-light-90:focus{
    color: rgba(81, 216, 138, 0.9);
  }

  .hd\:focus\:text-tertiary-lighter-90:focus{
    color: rgba(162, 245, 191, 0.9);
  }

  .hd\:focus\:text-tertiary-lightest-90:focus{
    color: rgba(227, 252, 236, 0.9);
  }

  .group:hover .hd\:group-hover\:text-border-90{
    color: rgba(230, 235, 245, 0.9);
  }

  .group:hover .hd\:group-hover\:text-form-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:text-form-active-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:text-black-90{
    color: rgba(33, 37, 41, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-darkest-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-darker-90{
    color: rgba(154, 165, 192, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-dark-90{
    color: rgba(66, 80, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-90{
    color: rgba(121, 130, 139, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-light-90{
    color: rgba(179, 188, 197, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-lighter-90{
    color: rgba(222, 228, 233, 0.9);
  }

  .group:hover .hd\:group-hover\:text-grey-lightest-90{
    color: rgba(244, 246, 249, 0.9);
  }

  .group:hover .hd\:group-hover\:text-white-90{
    color: rgba(255, 255, 255, 0.9);
  }

  .group:hover .hd\:group-hover\:text-red-90{
    color: rgba(211, 26, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:text-green-90{
    color: rgba(102, 187, 8, 0.9);
  }

  .group:hover .hd\:group-hover\:text-blue-90{
    color: rgba(31, 168, 226, 0.9);
  }

  .group:hover .hd\:group-hover\:text-orange-90{
    color: rgba(247, 148, 14, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-darkest-90{
    color: rgba(83, 15, 18, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-darker-90{
    color: rgba(124, 23, 27, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-dark-90{
    color: rgba(166, 30, 36, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-90{
    color: rgba(207, 38, 45, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-light-90{
    color: rgba(217, 81, 87, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-lighter-90{
    color: rgba(226, 125, 129, 0.9);
  }

  .group:hover .hd\:group-hover\:text-primary-lightest-90{
    color: rgba(236, 168, 171, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-darkest-90{
    color: rgba(62, 69, 37, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-darker-90{
    color: rgba(94, 104, 55, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-dark-90{
    color: rgba(125, 138, 74, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-90{
    color: rgba(156, 173, 92, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-light-90{
    color: rgba(176, 189, 125, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-lighter-90{
    color: rgba(196, 206, 157, 0.9);
  }

  .group:hover .hd\:group-hover\:text-secondary-lightest-90{
    color: rgba(215, 222, 190, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darkest-90{
    color: rgba(15, 47, 33, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-darker-90{
    color: rgba(26, 71, 49, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-dark-90{
    color: rgba(31, 157, 85, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-90{
    color: rgba(255, 197, 0, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-light-90{
    color: rgba(81, 216, 138, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lighter-90{
    color: rgba(162, 245, 191, 0.9);
  }

  .group:hover .hd\:group-hover\:text-tertiary-lightest-90{
    color: rgba(227, 252, 236, 0.9);
  }

  .hd\:transform-none{
    -webkit-transform: none;
            transform: none;
  }

  .hd\:translate-x-1\/2{
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .hd\:translate-y-1\/2{
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .hd\:translate-x-full{
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  .hd\:translate-y-full{
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .hd\:-translate-x-1\/2{
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .hd\:-translate-y-1\/2{
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .hd\:-translate-x-full{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  .hd\:-translate-y-full{
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  .hd\:scale-90{
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }

  .hd\:scale-x-90{
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
  }

  .hd\:scale-y-90{
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }

  .hd\:scale-100{
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .hd\:scale-x-100{
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  .hd\:scale-y-100{
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }

  .hd\:scale-110{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .hd\:scale-x-110{
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }

  .hd\:scale-y-110{
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }

  .hd\:rotate-90{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .hd\:rotate-180{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .hd\:rotate-270{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .hd\:-rotate-90{
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .hd\:-rotate-180{
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .hd\:-rotate-270{
    -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
  }

  .hd\:skew-x-5{
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }

  .hd\:skew-y-5{
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
  }

  .hd\:-skew-x-5{
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }

  .hd\:-skew-y-5{
    -webkit-transform: skewY(-5deg);
            transform: skewY(-5deg);
  }

  .hd\:transform-origin-t{
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }

  .hd\:transform-origin-r{
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }

  .hd\:transform-origin-b{
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }

  .hd\:transform-origin-l{
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }

  .hd\:container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 420px){
    .hd\:container{
      max-width: 420px;
    }
  }

  @media (min-width: 576px){
    .hd\:container{
      max-width: 576px;
    }
  }

  @media (min-width: 768px){
    .hd\:container{
      max-width: 768px;
    }
  }

  @media (min-width: 992px){
    .hd\:container{
      max-width: 992px;
    }
  }

  @media (min-width: 1200px){
    .hd\:container{
      max-width: 1200px;
    }
  }

  @media (min-width: 1472px){
    .hd\:container{
      max-width: 1472px;
    }
  }

  @media (min-width: 1920px){
    .hd\:container{
      max-width: 1920px;
    }
  }
}
